Lines Matching defs:new
15 // A is the top of an inheritance tree of classes that overload op new and
29 void* operator new(size_t size) {
31 return ::operator new(size);
106 fB = new B();
155 return new A;
157 return new B;
159 return new C;
161 return new D;
163 return new E;
252 // Allocates memory until pool adds a new block (pool->size() changes).
310 // space, so next allocation request allocates a new block.