Home | History | Annotate | Download | only in common

Lines Matching defs:MaybeStackArray

254 class MaybeStackArray {
259 MaybeStackArray() : ptr(stackArray), capacity(stackCapacity), needToRelease(FALSE) {}
263 ~MaybeStackArray() { releaseArray(); }
341 /* No comparison operators with other MaybeStackArray's. */
342 bool operator==(const MaybeStackArray & /*other*/) {return FALSE;}
343 bool operator!=(const MaybeStackArray & /*other*/) {return TRUE;}
345 MaybeStackArray(const MaybeStackArray & /*other*/) {}
346 void operator=(const MaybeStackArray & /*other*/) {}
350 // MSVC insists on exporting an instantiation of MaybeStackArray, which
364 inline T *MaybeStackArray<T, stackCapacity>::resize(int32_t newCapacity, int32_t length) {
392 inline T *MaybeStackArray<T, stackCapacity>::orphanOrClone(int32_t length, int32_t &resultCapacity) {
419 * Variant of MaybeStackArray that allocates a header struct and an array
530 // see the MaybeStackArray class for details.)