Lines Matching full:delete
27 * Default implementation of UMemory::new/delete
31 * that ICU is not using the global ::new and ::delete operators.
39 * Instead of just modifying these C++ new/delete operators, it is usually best
43 * The global operators new and delete look as follows:
45 * 03F 00000000 UNDEF notype () External | ??3@YAXPAX@Z (void __cdecl operator delete(void *))
53 * Make sure that with the UMemory operators new and delete defined these two symbols
57 * for which file and function calls the global new or delete operator,
65 void U_EXPORT2 UMemory::operator delete(void *p) U_NO_THROW {
75 void U_EXPORT2 UMemory::operator delete[](void *p) U_NO_THROW {
86 void U_EXPORT2 UMemory::operator delete(void* p, const char* /*file*/, int /*line*/) U_NO_THROW {
87 UMemory::operator delete(p);
104 delete static_cast<UObject *>(obj);