Home
last modified time | relevance | path

Searched refs:LocalPointerBase (Results 1 - 24 of 24) sorted by relevance

/third_party/icu/icu4c/source/common/unicode/
H A Dlocalpointer.h68 class LocalPointerBase { class
82 explicit LocalPointerBase(T *p=NULL) : ptr(p) {} in LocalPointerBase() function in LocalPointerBase
88 ~LocalPointerBase() { /* delete ptr; */ } in ~LocalPointerBase()
165 bool operator==(const LocalPointerBase<T> &other);
166 bool operator!=(const LocalPointerBase<T> &other);
168 LocalPointerBase(const LocalPointerBase<T> &other);
169 void operator=(const LocalPointerBase<T> &other);
174 * For most methods see the LocalPointerBase base class.
187 * @see LocalPointerBase
224 LocalPointer(LocalPointer<T> &&src) U_NOEXCEPT : LocalPointerBase<T>(src.ptr) { LocalPointerBase() function in LocalPointer
399 LocalArray(LocalArray<T> &&src) U_NOEXCEPT : LocalPointerBase<T>(src.ptr) { LocalPointerBase() function in LocalArray
[all...]
/third_party/node/deps/icu-small/source/common/unicode/
H A Dlocalpointer.h68 class LocalPointerBase { class
82 explicit LocalPointerBase(T *p=nullptr) : ptr(p) {} in LocalPointerBase() function in LocalPointerBase
88 ~LocalPointerBase() { /* delete ptr; */ } in ~LocalPointerBase()
165 bool operator==(const LocalPointerBase<T> &other);
166 bool operator!=(const LocalPointerBase<T> &other);
168 LocalPointerBase(const LocalPointerBase<T> &other);
169 void operator=(const LocalPointerBase<T> &other);
174 * For most methods see the LocalPointerBase base class.
187 * @see LocalPointerBase
224 LocalPointer(LocalPointer<T> &&src) noexcept : LocalPointerBase<T>(src.ptr) { LocalPointerBase() function in LocalPointer
399 LocalArray(LocalArray<T> &&src) noexcept : LocalPointerBase<T>(src.ptr) { LocalPointerBase() function in LocalArray
[all...]
/third_party/skia/third_party/externals/icu/source/common/unicode/
H A Dlocalpointer.h68 class LocalPointerBase { class
82 explicit LocalPointerBase(T *p=NULL) : ptr(p) {} in LocalPointerBase() function in LocalPointerBase
88 ~LocalPointerBase() { /* delete ptr; */ } in ~LocalPointerBase()
165 bool operator==(const LocalPointerBase<T> &other);
166 bool operator!=(const LocalPointerBase<T> &other);
168 LocalPointerBase(const LocalPointerBase<T> &other);
169 void operator=(const LocalPointerBase<T> &other);
174 * For most methods see the LocalPointerBase base class.
187 * @see LocalPointerBase
224 LocalPointer(LocalPointer<T> &&src) U_NOEXCEPT : LocalPointerBase<T>(src.ptr) { LocalPointerBase() function in LocalPointer
399 LocalArray(LocalArray<T> &&src) U_NOEXCEPT : LocalPointerBase<T>(src.ptr) { LocalPointerBase() function in LocalArray
[all...]
/third_party/icu/icu4c/source/common/
H A Dcmemory.h181 * For most methods see the LocalPointerBase base class.
184 * @see LocalPointerBase
187 class LocalMemory : public LocalPointerBase<T> {
189 using LocalPointerBase<T>::operator*;
190 using LocalPointerBase<T>::operator->;
195 explicit LocalMemory(T *p=NULL) : LocalPointerBase<T>(p) {} in LocalMemory()
200 LocalMemory(LocalMemory<T> &&src) U_NOEXCEPT : LocalPointerBase<T>(src.ptr) { in LocalPointerBase() function in LocalMemory
207 uprv_free(LocalPointerBase<T>::ptr); in ~LocalMemory()
216 uprv_free(LocalPointerBase<T>::ptr);
217 LocalPointerBase<
[all...]
/third_party/node/deps/icu-small/source/common/
H A Dcmemory.h181 * For most methods see the LocalPointerBase base class.
184 * @see LocalPointerBase
187 class LocalMemory : public LocalPointerBase<T> {
189 using LocalPointerBase<T>::operator*;
190 using LocalPointerBase<T>::operator->;
195 explicit LocalMemory(T *p=nullptr) : LocalPointerBase<T>(p) {} in LocalMemory()
200 LocalMemory(LocalMemory<T> &&src) noexcept : LocalPointerBase<T>(src.ptr) { in LocalPointerBase() function in LocalMemory
207 uprv_free(LocalPointerBase<T>::ptr); in ~LocalMemory()
216 uprv_free(LocalPointerBase<T>::ptr);
217 LocalPointerBase<
[all...]
/third_party/skia/third_party/externals/icu/source/common/
H A Dcmemory.h181 * For most methods see the LocalPointerBase base class.
184 * @see LocalPointerBase
187 class LocalMemory : public LocalPointerBase<T> {
189 using LocalPointerBase<T>::operator*;
190 using LocalPointerBase<T>::operator->;
195 explicit LocalMemory(T *p=NULL) : LocalPointerBase<T>(p) {} in LocalMemory()
200 LocalMemory(LocalMemory<T> &&src) U_NOEXCEPT : LocalPointerBase<T>(src.ptr) { in LocalPointerBase() function in LocalMemory
207 uprv_free(LocalPointerBase<T>::ptr); in ~LocalMemory()
216 uprv_free(LocalPointerBase<T>::ptr);
217 LocalPointerBase<
[all...]
/third_party/icu/icu4c/source/i18n/
H A Dnumber_usageprefs.h68 // Export explicit template instantiations of LocalPointerBase and LocalPointer.
76 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
80 template class U_I18N_API LocalPointerBase<ComplexUnitsConverter>; variable
H A Derarules.h22 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
26 template class U_I18N_API LocalPointerBase<int32_t>; variable
H A Dnumber_patternmodifier.h25 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
29 template class U_I18N_API LocalPointerBase<number::impl::AdoptingModifierStore>; variable
H A Dnumber_decimfmtprops.h25 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
29 template class U_I18N_API LocalPointerBase<CurrencyPluralInfo>; variable
H A Dmeasunit_impl.h362 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
366 template class U_I18N_API LocalPointerBase<MeasureUnitImpl>; variable
/third_party/node/deps/icu-small/source/i18n/
H A Dnumber_usageprefs.h68 // Export explicit template instantiations of LocalPointerBase and LocalPointer.
76 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
80 template class U_I18N_API LocalPointerBase<ComplexUnitsConverter>; variable
H A Derarules.h22 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
26 template class U_I18N_API LocalPointerBase<int32_t>; variable
H A Dnumber_decimfmtprops.h25 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
29 template class U_I18N_API LocalPointerBase<CurrencyPluralInfo>; variable
H A Dnumber_patternmodifier.h25 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
29 template class U_I18N_API LocalPointerBase<number::impl::AdoptingModifierStore>; variable
H A Dmeasunit_impl.h362 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
366 template class U_I18N_API LocalPointerBase<MeasureUnitImpl>; variable
/third_party/skia/third_party/externals/icu/source/i18n/
H A Derarules.h22 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
26 template class U_I18N_API LocalPointerBase<int32_t>; variable
H A Dnumber_usageprefs.h68 // Export explicit template instantiations of LocalPointerBase and LocalPointer.
76 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
80 template class U_I18N_API LocalPointerBase<ComplexUnitsConverter>; variable
H A Dnumber_decimfmtprops.h25 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
29 template class U_I18N_API LocalPointerBase<CurrencyPluralInfo>; variable
H A Dnumber_patternmodifier.h25 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
29 template class U_I18N_API LocalPointerBase<number::impl::AdoptingModifierStore>; variable
H A Dmeasunit_impl.h326 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
330 template class U_I18N_API LocalPointerBase<MeasureUnitImpl>; variable
/third_party/node/deps/icu-small/source/tools/pkgdata/
H A Dpkgdata.cpp64 using icu::LocalPointerBase;
/third_party/icu/icu4c/source/tools/pkgdata/
H A Dpkgdata.cpp64 using icu::LocalPointerBase;
/third_party/skia/third_party/externals/icu/source/tools/pkgdata/
H A Dpkgdata.cpp64 using icu::LocalPointerBase;

Completed in 19 milliseconds