Searched defs:scoped_array (Results 1 – 9 of 9) sorted by relevance
11 scoped_array() : array_(NULL) {} in scoped_array() function12 explicit scoped_array(T *array) : array_(array) {} in scoped_array() function
39 template<class T> class scoped_array // noncopyable class57 explicit scoped_array( T * p = 0 ) BOOST_SP_NOEXCEPT : px( p ) in scoped_array() function in boost::scoped_array
73 class scoped_array { class82 explicit scoped_array(C* p = NULL) : array_(p) { } in scoped_array() function in scoped_array
12 [#scoped_array] anchor
54 uint8_t* scoped_array in SerializeProtoToJniByteArray() local
44 icing::lib::ScopedPrimitiveArrayCritical<uint8_t> scoped_array(env, bytes); in ParseProtoFromJniByteArray() local58 icing::lib::ScopedPrimitiveArrayCritical<uint8_t> scoped_array(env, ret); in SerializeProtoToJniByteArray() local
52 ScopedLongArrayRO scoped_array(env); in Java_android_jvmti_cts_JvmtiTaggingTest_getTaggedObjects() local
38 ScopedLongArrayRO scoped_array(env); in Java_art_Test903_getTaggedObjects() local
471 template <class C> struct scoped_array { struct