Lines Matching full:operator
4 // Operator delete template for placement new with global lookup
9 static void* operator new(size_t) {
13 static void operator delete(void*) {
19 // Using the global operator new suppresses the search for a
20 // operator delete in the class.
26 // Operator delete template for placement new[] with global lookup
31 static void* operator new[](size_t) {
35 static void operator delete[](void*) {
41 // Using the global operator new suppresses the search for a
42 // operator delete in the class.