Lines Matching defs:new
58 void* operator new(size_t size ATF_DEFS_ATTRIBUTE_UNUSED)
60 ATF_FAIL("New called but should have been new[]");
61 return new int(5);
64 void* operator new[](size_t size)
67 void* mem = ::operator new(size);
101 auto_array< test_array > t(new test_array[10]);
119 auto_array< test_array > t1(new test_array[10]);
143 auto_array< test_array > t1(new test_array[10]);
165 test_array* ta = new test_array[10];
180 test_array* ta1 = new test_array[10];
202 test_array* ta1 = new test_array[10];
203 test_array* ta2 = new test_array[10];
229 auto_array< test_array > t1(new test_array[10]);
255 auto_array< test_array > t1(new test_array[10]);
278 auto_array< test_array > t(new test_array[10]);