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
{