Home | History | Annotate | Download | only in common

Lines Matching refs:UMemory

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);