Home | History | Annotate | Download | only in common

Lines Matching full:operator

42  *   04F 00000000 UNDEF  notype ()    External     | ??2@YAPAXI@Z (void * __cdecl operator new(unsigned int))
43 * 03F 00000000 UNDEF notype () External | ??3@YAXPAX@Z (void __cdecl operator delete(void *))
55 * for which file and function calls the global new or delete operator,
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);