OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:UMemory
(Results
1 - 25
of
139
) sorted by null
1
2
3
4
5
6
/external/icu/icu4c/source/common/
uobject.cpp
27
* 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
::operator delete(p)
[
all
...]
cstr.h
46
class U_COMMON_API CStr : public
UMemory
{
mutex.h
53
class U_COMMON_API Mutex : public
UMemory
{
brkeng.h
38
class LanguageBreakEngine : public
UMemory
{
103
class LanguageBreakFactory : public
UMemory
{
ruleiter.h
31
class RuleCharacterIterator : public
UMemory
{
135
struct Pos : public
UMemory
{
servnotf.h
74
class U_COMMON_API ICUNotifier : public
UMemory
{
rbbisetb.h
41
class RangeDescriptor : public
UMemory
{
80
class RBBISetBuilder : public
UMemory
{
rbbirb.h
49
class RBBISymbolTableEntry : public
UMemory
{ // The symbol table hash table contains one
62
class RBBISymbolTable : public
UMemory
, public SymbolTable {
108
class RBBIRuleBuilder : public
UMemory
{
/external/icu/icu4c/source/i18n/
csrecog.h
23
class CharsetRecognizer : public
UMemory
numparse_validators.h
33
class RequireAffixValidator : public ValidationMatcher, public
UMemory
{
41
class RequireCurrencyValidator : public ValidationMatcher, public
UMemory
{
49
class RequireDecimalSeparatorValidator : public ValidationMatcher, public
UMemory
{
64
class RequireNumberValidator : public ValidationMatcher, public
UMemory
{
75
class MultiplierParseHandler : public ValidationMatcher, public
UMemory
{
smpdtfst.h
31
class SimpleDateFormatStaticSets : public
UMemory
astro.h
56
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
{
number_utypes.h
24
struct UNumberFormatterData : public
UMemory
{
53
struct UFormattedNumberData : public
UMemory
{
csmatch.h
33
class CharsetMatch : public
UMemory
inputext.h
28
class InputText : public
UMemory
regexst.h
34
class RegexStaticSets : public
UMemory
{
uspoof_conf.h
41
struct SPUString : public
UMemory
{
59
class SPUStringPool : public
UMemory
{
89
class ConfusabledataBuilder : public
UMemory
{
numrange_impl.h
28
struct UFormattedNumberRangeData : public
UMemory
{
44
class StandardPluralRanges : public
UMemory
{
74
class NumberRangeFormatterImpl : public
UMemory
{
numparse_scientific.h
20
class ScientificMatcher : public NumberParseMatcher, public
UMemory
{
rbt_data.h
47
class TransliterationRuleData : public
UMemory
{
number_scientific.h
18
class U_I18N_API ScientificModifier : public
UMemory
, public Modifier {
44
class ScientificHandler : public
UMemory
, public MicroPropsGenerator, public MultiplierProducer {
collationsets.h
43
class TailoredSet : public
UMemory
{
87
class ContractionsAndExpansions : public
UMemory
{
89
class CESink : public
UMemory
{
number_mapper.h
23
class PropertiesAffixPatternProvider : public AffixPatternProvider, public
UMemory
{
73
class CurrencyPluralInfoAffixProvider : public AffixPatternProvider, public
UMemory
{
127
struct DecimalFormatFields : public
UMemory
{
/external/icu/icu4c/source/common/unicode/
errorcode.h
81
class U_COMMON_API ErrorCode: public
UMemory
{
uobject.h
34
*
UMemory
operator new methods should have the throw() specification
95
*
UMemory
is the common ICU base class.
96
* All other ICU C++ classes are derived from
UMemory
(starting with ICU 2.4).
104
*
UMemory
does not contain any virtual functions.
109
class U_COMMON_API
UMemory
{
197
UMemory
&
UMemory
::operator=(const
UMemory
&);
203
* UObject inherits
UMemory
(starting with ICU 2.4),
220
class U_COMMON_API UObject : public
UMemory
{
[
all
...]
Completed in 1895 milliseconds
1
2
3
4
5
6