Searched defs:delete (Results 1 - 25 of 109) sorted by relevance

12345

/external/webkit/Source/WebKit2/
H A DWebKit2Prefix.h32 #define new ("if you use new/delete make sure to include config.h at the top of the file"())
33 #define delete ("if you use new/delete make sure to include config.h at the top of the file"()) macro
/external/clang/test/CXX/special/class.free/
H A Dp6.cpp5 void operator delete(void*) {
8 void operator delete[](void*) {
/external/clang/test/CodeGenCXX/
H A Dmangle-system-header.cpp7 void operator delete (void*, void*) {}
H A Dapple-kext-linkage.C8 void operator delete(void *) { }
/external/webkit/Source/JavaScriptCore/
H A DJavaScriptCorePrefix.h29 #define new ("if you use new/delete make sure to include config.h at the top of the file"())
30 #define delete ("if you use new/delete make sure to include config.h at the top of the file"()) macro
/external/clang/test/CXX/expr/expr.unary/expr.new/
H A Dp19.cpp4 // Operator delete template for placement new with global lookup
13 static void operator delete(void*) {
20 // operator delete in the class.
26 // Operator delete template for placement new[] with global lookup
35 static void operator delete[](void*) {
42 // operator delete in the class.
/external/v8/test/mjsunit/compiler/
H A Dregress-arguments.js50 delete Number.prototype.foo;
49 delete Number.prototype.foo; class
/external/v8/test/mjsunit/
H A Derror-constructors.js52 // dont-delete. This is not specified, but allowing overwriting the
57 delete ReferenceError.prototype.name;
56 delete ReferenceError.prototype.name; class
H A Dsparse-array-reverse.js47 delete a[50]; // Should leave no trace once deleted.
52 delete Array.prototype[30];
126 delete(Array.prototype[pos]);
51 delete Array.prototype[30]; class
H A Dstring-charat.js238 delete String.prototype.charAt; // Restore the default.
253 delete String.prototype.charCodeAt; // Restore the default.
237 delete String.prototype.charAt; // Restore the default. class
H A Darray-concat.js197 delete Array.prototype[123];
194 delete Array.prototype[123]; class
/external/webkit/Source/WebCore/svg/
H A DSVGFontFaceUriElement.h56 void operator delete(void* p, size_t size) {
57 SVGElement::operator delete(p, size);
59 void operator delete[](void* p, size_t size) {
60 SVGElement::operator delete[](p, size);
/external/webkit/Source/WebCore/rendering/
H A DBidiRun.cpp46 delete this;
51 // Recover the size left there for us by operator delete and free the memory.
63 void BidiRun::operator delete(void* ptr, size_t sz)
/external/webkit/Source/WebCore/rendering/style/
H A DQuotesData.h37 void operator delete(void* p) { delete[] static_cast<char*>(p); }
/external/oprofile/libutil++/tests/
H A Dutility_tests.cpp36 void operator delete(void * p) throw()
43 void operator delete[](void * p) throw()
/external/qemu/elff/
H A Delf_alloc.h70 * will use overwritten operators new/delete for the DWARF objects that use
131 /* Overwitten operator delete.
136 void operator delete(void* ptr) {
139 /* Overwitten operator delete.
144 void operator delete[](void* ptr) {
/external/valgrind/main/massif/tests/
H A Doverloaded-new.cpp37 __attribute__((noinline)) void operator delete (void* p)
42 __attribute__((noinline)) void operator delete[] (void* p)
53 delete p1;
54 delete p2;
55 delete [] c1;
56 delete [] c2;
/external/webkit/Source/WebCore/css/
H A DStyleBase.cpp83 void StyleBase::operator delete(void* p, size_t size)
86 ::operator delete(p);
89 void StyleBase::operator delete[](void* p, size_t size)
92 ::operator delete[](p);
/external/webkit/Source/WebCore/xml/
H A DXSLImportRule.h63 void operator delete(void* p, size_t size) {
64 StyleBase::operator delete(p, size);
66 void operator delete[](void* p, size_t size) {
67 StyleBase::operator delete[](p, size);
/external/llvm/include/llvm/Support/
H A DRecyclingAllocator.h67 inline void operator delete(void *E,
/external/mesa3d/src/glsl/
H A Dglsl_symbol_table.h56 /* Callers of this hieralloc-based new need not call delete. It's
69 /* If the user *does* call delete, that's OK, we will just
72 static void operator delete(void *table)
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Exceptions/
H A D15.11.7.6-002.js30 * and other provisions required by the GPL or the LGPL. If you do not delete
60 delete F.prototype;
59 delete F.prototype; class
/external/webkit/Source/WebCore/
H A DWebCorePrefix.h24 * 3) the special trick to catch us using new or delete without including "config.h"
147 #define new ("if you use new/delete make sure to include config.h at the top of the file"())
148 #define delete ("if you use new/delete make sure to include config.h at the top of the file"()) macro
/external/webkit/Tools/Scripts/webkitpy/common/system/
H A Ddirectoryfileset.py69 def delete(self, filename): member in class:DirectoryFileSet
H A Dfileset.py59 def delete(self): member in class:FileSetFileHandle
60 self._fileset.delete(self._filename)

Completed in 2211 milliseconds

12345