Searched defs:scoped_array (Results 1 – 6 of 6) 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
12 [#scoped_array] anchor
73 class scoped_array { class82 explicit scoped_array(C* p = NULL) : array_(p) { } in scoped_array() function in scoped_array
41 icing::lib::ScopedPrimitiveArrayCritical<uint8_t> scoped_array(env, bytes); in ParseProtoFromJniByteArray() local55 icing::lib::ScopedPrimitiveArrayCritical<uint8_t> scoped_array(env, ret); in SerializeProtoToJniByteArray() local
471 template <class C> struct scoped_array { struct