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

  /external/icu/icu4c/source/common/
charstr.h 24 // Windows needs us to DLL-export the MaybeStackArray template specialization,
27 template class U_COMMON_API MaybeStackArray<char, 40>;
142 MaybeStackArray<char, 40> buffer;
cmemory.h 283 * WARNING: MaybeStackArray only works with primitive (plain-old data) types.
288 class MaybeStackArray {
293 MaybeStackArray() : ptr(stackArray), capacity(stackCapacity), needToRelease(FALSE) {}
299 MaybeStackArray(int32_t newCapacity) : MaybeStackArray() {
305 ~MaybeStackArray() { releaseArray(); }
309 MaybeStackArray(MaybeStackArray<T, stackCapacity> &&src) U_NOEXCEPT;
313 MaybeStackArray<T, stackCapacity> &operator=(MaybeStackArray<T, stackCapacity> &&src) U_NOEXCEPT
    [all...]
  /external/icu/icu4c/source/i18n/
numparse_compositions.h 14 // Export an explicit template instantiation of the MaybeStackArray that is used as a data member of ArraySeriesMatcher.
15 // When building DLLs for Windows this is required even though no direct access to the MaybeStackArray leaks out of the i18n library.
18 template class U_I18N_API MaybeStackArray<const numparse::impl::NumberParseMatcher*, 3>;
99 typedef MaybeStackArray<const NumberParseMatcher*, 3> MatcherArray;
collationiterator.h 34 // Export an explicit template instantiation of the MaybeStackArray that
38 // no direct access to the MaybeStackArray leaks out of the i18n library.
43 template class U_I18N_API MaybeStackArray<int64_t, CEBUFFER_INITIAL_CAPACITY>;
98 MaybeStackArray<int64_t, INITIAL_CAPACITY> buffer;
numparse_impl.h 24 // Export an explicit template instantiation of the MaybeStackArray that is used as a data member of NumberParserImpl.
25 // When building DLLs for Windows this is required even though no direct access to the MaybeStackArray leaks out of the i18n library.
28 template class U_I18N_API MaybeStackArray<const numparse::impl::NumberParseMatcher*, 10>;
68 MaybeStackArray<const NumberParseMatcher*, 10> fMatchers;
numparse_affixes.h 50 // Export a explicit template instantiations of MaybeStackArray and CompactUnicodeString.
55 template class U_I18N_API MaybeStackArray<UChar, 4>;
56 template class U_I18N_API MaybeStackArray<numparse::impl::CodePointMatcher*, 3>;
75 // A custom destructor is needed to free the memory from MaybeStackArray.
88 MaybeStackArray<CodePointMatcher*, 3> codePointsOverflow; // On heap in "batches"

Completed in 230 milliseconds