Home | History | Annotate | Download | only in common

Lines Matching defs:MaybeStackArray

309 class MaybeStackArray {
314 MaybeStackArray() : ptr(stackArray), capacity(stackCapacity), needToRelease(FALSE) {}
318 ~MaybeStackArray() { releaseArray(); }
396 /* No comparison operators with other MaybeStackArray's. */
397 bool operator==(const MaybeStackArray & /*other*/) {return FALSE;}
398 bool operator!=(const MaybeStackArray & /*other*/) {return TRUE;}
400 MaybeStackArray(const MaybeStackArray & /*other*/) {}
401 void operator=(const MaybeStackArray & /*other*/) {}
405 // MSVC insists on exporting an instantiation of MaybeStackArray, which
419 inline T *MaybeStackArray<T, stackCapacity>::resize(int32_t newCapacity, int32_t length) {
447 inline T *MaybeStackArray<T, stackCapacity>::orphanOrClone(int32_t length, int32_t &resultCapacity) {
474 * Variant of MaybeStackArray that allocates a header struct and an array
585 // see the MaybeStackArray class for details.)