Searched refs:UMemory (Results 1 - 25 of 140) sorted by relevance

123456

/external/icu/icu4c/source/common/
H A Duobject.cpp27 * Default implementation of UMemory::new/delete
53 * Make sure that with the UMemory operators new and delete defined these two symbols
61 void * U_EXPORT2 UMemory::operator new(size_t size) U_NO_THROW {
65 void U_EXPORT2 UMemory::operator delete(void *p) U_NO_THROW {
71 void * U_EXPORT2 UMemory::operator new[](size_t size) U_NO_THROW {
75 void U_EXPORT2 UMemory::operator delete[](void *p) U_NO_THROW {
82 void * U_EXPORT2 UMemory::operator new(size_t size, const char* /*file*/, int /*line*/) U_NO_THROW {
83 return UMemory::operator new(size);
86 void U_EXPORT2 UMemory::operator delete(void* p, const char* /*file*/, int /*line*/) U_NO_THROW {
87 UMemory
[all...]
H A Dcstr.h46 class U_COMMON_API CStr : public UMemory {
H A Dmutex.h53 class U_COMMON_API Mutex : public UMemory {
H A Drbbisetb.h41 class RangeDescriptor : public UMemory {
80 class RBBISetBuilder : public UMemory {
H A Druleiter.h31 class RuleCharacterIterator : public UMemory {
135 struct Pos : public UMemory {
H A Drbbirb.h48 class RBBISymbolTableEntry : public UMemory { // The symbol table hash table contains one
61 class RBBISymbolTable : public UMemory, public SymbolTable {
107 class RBBIRuleBuilder : public UMemory {
H A Dlocbased.h36 class U_COMMON_API LocaleBased : public UMemory {
H A Dservnotf.h74 class U_COMMON_API ICUNotifier : public UMemory {
H A Dunistrappender.h39 class UnicodeStringAppender : public UMemory {
/external/icu/icu4c/source/i18n/
H A Dcsrecog.h23 class CharsetRecognizer : public UMemory
H A Dsmpdtfst.h31 class SimpleDateFormatStaticSets : public UMemory
H A Dastro.h56 class U_I18N_API CalendarAstronomer : public UMemory {
78 class U_I18N_API Ecliptic : public UMemory {
147 class U_I18N_API Equatorial : public UMemory {
221 class U_I18N_API Horizon : public UMemory {
588 class U_I18N_API MoonAge : public UMemory {
648 class AngleFunc : public UMemory {
658 class CoordFunc : public UMemory {
739 class CalendarCache : public UMemory {
H A Dsmallintformatter.h27 class U_I18N_API IntDigitCountRange : public UMemory {
46 class U_I18N_API SmallIntFormatter : public UMemory {
H A Dregexst.h34 class RegexStaticSets : public UMemory {
H A Duspoof_conf.h41 struct SPUString : public UMemory {
59 class SPUStringPool : public UMemory {
89 class ConfusabledataBuilder : public UMemory {
H A Dcsmatch.h33 class CharsetMatch : public UMemory
H A Ddecfmtst.h30 class DecimalFormatStaticSets : public UMemory
H A Dinputext.h28 class InputText : public UMemory
H A Drbt_data.h47 class TransliterationRuleData : public UMemory {
H A Dnumber_scientific.h18 class U_I18N_API ScientificModifier : public UMemory, public Modifier {
38 class ScientificHandler : public UMemory, public MicroPropsGenerator, public MultiplierProducer {
H A Daffixpatternparser.h38 class U_I18N_API CurrencyAffixInfo : public UMemory {
124 class U_I18N_API AffixPattern : public UMemory {
316 class U_I18N_API AffixPatternIterator : public UMemory {
365 class U_I18N_API AffixPatternParser : public UMemory {
H A Dcsdetect.h25 class CharsetDetector : public UMemory
H A Ddigitaffix.h32 class U_I18N_API DigitAffix : public UMemory {
/external/icu/icu4c/source/common/unicode/
H A Derrorcode.h81 class U_COMMON_API ErrorCode: public UMemory {
H A Duobject.h35 * UMemory operator new methods should have the throw() specification
98 * UMemory is the common ICU base class.
99 * All other ICU C++ classes are derived from UMemory (starting with ICU 2.4).
107 * UMemory does not contain any virtual functions.
112 class U_COMMON_API UMemory { class
200 UMemory &UMemory::operator=(const UMemory &);
206 * UObject inherits UMemory (starting with ICU 2.4),
223 class U_COMMON_API UObject : public UMemory {
[all...]

Completed in 308 milliseconds

123456