HomeSort by relevance Sort by last modified time
    Searched refs:LocalPointerBase (Results 1 - 5 of 5) sorted by null

  /external/icu/icu4c/source/common/unicode/
localpointer.h 66 class LocalPointerBase {
73 explicit LocalPointerBase(T *p=NULL) : ptr(p) {}
79 ~LocalPointerBase() { /* delete ptr; */ }
156 bool operator==(const LocalPointerBase<T> &other);
157 bool operator!=(const LocalPointerBase<T> &other);
159 LocalPointerBase(const LocalPointerBase<T> &other);
160 void operator=(const LocalPointerBase<T> &other);
171 * For most methods see the LocalPointerBase base class.
184 * @see LocalPointerBase
    [all...]
  /external/icu/icu4c/source/common/
cmemory.h 150 * For most methods see the LocalPointerBase base class.
153 * @see LocalPointerBase
156 class LocalMemory : public LocalPointerBase<T> {
158 using LocalPointerBase<T>::operator*;
159 using LocalPointerBase<T>::operator->;
164 explicit LocalMemory(T *p=NULL) : LocalPointerBase<T>(p) {}
169 LocalMemory(LocalMemory<T> &&src) U_NOEXCEPT : LocalPointerBase<T>(src.ptr) {
176 uprv_free(LocalPointerBase<T>::ptr);
196 delete[] LocalPointerBase<T>::ptr;
197 LocalPointerBase<T>::ptr=src.ptr
    [all...]
  /external/icu/icu4c/source/i18n/
number_decimfmtprops.h 24 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
26 template class U_I18N_API LocalPointerBase<CurrencyPluralInfo>;
number_patternmodifier.h 23 // Ignore warning 4661 as LocalPointerBase does not use operator== or operator!=
25 template class U_I18N_API LocalPointerBase<number::impl::ParameterizedModifier>;
  /external/icu/icu4c/source/tools/pkgdata/
pkgdata.cpp 63 using icu::LocalPointerBase;
    [all...]

Completed in 410 milliseconds