HomeSort by relevance Sort by last modified time
    Searched defs:AutoArray (Results 1 - 2 of 2) sorted by null

  /external/opencv3/3rdparty/openexr/IlmImf/
ImfAutoArray.h 42 // class AutoArray -- a workaround for systems with
60 class AutoArray
64 AutoArray (): _data (new T [size]) { memset(_data, 0, size*sizeof(T)); }
65 ~AutoArray () {delete [] _data;}
80 class AutoArray
  /external/dng_sdk/source/
dng_auto_ptr.h 189 class AutoArray
193 /// Construct an AutoArray that refers to a null pointer.
195 AutoArray () { }
197 /// Construct an AutoArray containing 'count' elements, which are
201 explicit AutoArray (size_t count)
206 /// Changes the size of the AutoArray to 'count' elements. The new
216 /// Allows indexing into the AutoArray. The index 'i' must be
250 AutoArray (const AutoArray &);
252 const AutoArray & operator= (const AutoArray &)
    [all...]

Completed in 739 milliseconds