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
96
) sorted by null
1
2
3
4
/external/icu4c/common/
uobject.cpp
25
* Default implementation of
UMemory
::new/delete
51
* Make sure that with the
UMemory
operators new and delete defined these two symbols
59
void * U_EXPORT2
UMemory
::operator new(size_t size) U_NO_THROW {
63
void U_EXPORT2
UMemory
::operator delete(void *p) U_NO_THROW {
69
void * U_EXPORT2
UMemory
::operator new[](size_t size) U_NO_THROW {
73
void U_EXPORT2
UMemory
::operator delete[](void *p) U_NO_THROW {
80
void * U_EXPORT2
UMemory
::operator new(size_t size, const char* /*file*/, int /*line*/) U_NO_THROW {
81
return
UMemory
::operator new(size);
84
void U_EXPORT2
UMemory
::operator delete(void* p, const char* /*file*/, int /*line*/) U_NO_THROW {
85
UMemory
::operator delete(p)
[
all
...]
ruleiter.h
29
class RuleCharacterIterator : public
UMemory
{
134
struct Pos : public
UMemory
{
rbbirb.h
43
class RBBISymbolTableEntry : public
UMemory
{ // The symbol table hash table contains one
56
class RBBISymbolTable : public
UMemory
, public SymbolTable {
102
class RBBIRuleBuilder : public
UMemory
{
locbased.h
34
class U_COMMON_API LocaleBased : public
UMemory
{
brkeng.h
35
class LanguageBreakEngine : public
UMemory
{
106
class LanguageBreakFactory : public
UMemory
{
rbbisetb.h
37
class RangeDescriptor : public
UMemory
{
76
class RBBISetBuilder : public
UMemory
{
rbbitblb.h
35
class RBBITableBuilder : public
UMemory
{
100
class RBBIStateDescriptor : public
UMemory
{
servnotf.h
72
class U_COMMON_API ICUNotifier : public
UMemory
{
/external/icu4c/i18n/
csrecog.h
19
class CharsetRecognizer : public
UMemory
uspoof_wsconf.h
41
class BuilderScriptSet: public
UMemory
{
astro.h
54
class U_I18N_API CalendarAstronomer : public
UMemory
{
76
class U_I18N_API Ecliptic : public
UMemory
{
145
class U_I18N_API Equatorial : public
UMemory
{
219
class U_I18N_API Horizon : public
UMemory
{
586
class U_I18N_API MoonAge : public
UMemory
{
646
class AngleFunc : public
UMemory
{
656
class CoordFunc : public
UMemory
{
737
class CalendarCache : public
UMemory
{
csmatch.h
20
class CharsetMatch : public
UMemory
inputext.h
26
class InputText : public
UMemory
regexst.h
32
class RegexStaticSets : public
UMemory
{
uspoof_conf.h
35
struct SPUString : public
UMemory
{
53
class SPUStringPool : public
UMemory
{
83
class ConfusabledataBuilder : public
UMemory
{
csdetect.h
21
class CharsetDetector : public
UMemory
decnumstr.h
30
class DecimalNumberString: public
UMemory
{
rbt_data.h
45
class TransliterationRuleData : public
UMemory
{
/external/icu4c/layout/
CharSubstitutionFilter.h
23
class CharSubstitutionFilter : public
UMemory
, public LEGlyphFilter
GDEFMarkFilter.h
21
class GDEFMarkFilter : public
UMemory
, public LEGlyphFilter
MPreFixups.h
24
class MPreFixups : public
UMemory
SubtableProcessor.h
22
class SubtableProcessor : public
UMemory
{
DefaultCharMapper.h
26
class DefaultCharMapper : public
UMemory
, public LECharMapper
/external/icu4c/common/unicode/
errorcode.h
79
class U_COMMON_API ErrorCode: public
UMemory
{
uobject.h
30
* delete in
UMemory
. Enabled by default for ICU.
46
* delete in
UMemory
for STL.
72
*
UMemory
operator new methods should have the throw() specification
87
*
UMemory
is the common ICU base class.
88
* All other ICU C++ classes are derived from
UMemory
(starting with ICU 2.4).
96
*
UMemory
does not contain any virtual functions.
101
class U_COMMON_API
UMemory
{
189
UMemory
&
UMemory
::operator=(const
UMemory
&)
[
all
...]
Completed in 638 milliseconds
1
2
3
4