/external/webkit/Source/WebKit2/ |
WebKit2Prefix.h | 32 #define new ("if you use new/delete make sure to include config.h at the top of the file"()) macro 33 #define delete ("if you use new/delete make sure to include config.h at the top of the file"())
|
/external/clang/test/CXX/special/class.free/ |
p1.cpp | 5 void *operator new(size_t) { 8 void *operator new[](size_t) {
|
/ndk/sources/cxx-stl/gabi++/src/ |
new.cc | 30 #include <new> 34 operator new(std::size_t size) throw (/*std::bad_alloc*/) 45 operator new[](std::size_t size) throw(/*std::bad_alloc*/) 47 return ::operator new(size); 52 operator new(std::size_t size, const std::nothrow_t&) 58 operator new[](std::size_t size, const std::nothrow_t& nt) 60 return ::operator new(size, nt);
|
/abi/cpp/src/ |
new.cc | 30 #include <new> 34 operator new(std::size_t size) throw (/*std::bad_alloc*/)
|
/external/bison/lib/ |
strdup.c | 44 void *new = malloc (len); local 46 if (new == NULL) 49 return (char *) memcpy (new, s, len);
|
strndup.c | 53 char *new = malloc (len + 1); local 55 if (new == NULL) 58 new[len] = '\0'; 59 return memcpy (new, s, len);
|
/external/tcpdump/ |
setsignal.c | 77 struct sigaction old, new; local 79 memset(&new, 0, sizeof(new)); 80 new.sa_handler = func; 81 if (sigaction(sig, &new, &old) < 0)
|
/ndk/sources/host-tools/sed-4.2.1/lib/ |
strndup.c | 32 char *new = malloc (len + 1); local 34 if (new == NULL) 37 new[len] = '\0'; 38 return memcpy (new, s, len);
|
/bionic/libstdc++/src/ |
new.cpp | 1 #include "new" 6 void* operator new(std::size_t size) 15 void* operator new[](std::size_t size) 34 void* operator new(std::size_t size, const std::nothrow_t&) 39 void* operator new[](std::size_t size, const std::nothrow_t&)
|
/external/clang/test/CodeGenCXX/ |
DynArrayInit.cpp | 7 inline void* operator new[](unsigned long, void* __p) { return __p; } 9 new (a) char[4]();
|
/external/webkit/Source/JavaScriptCore/ |
JavaScriptCorePrefix.h | 29 #define new ("if you use new/delete make sure to include config.h at the top of the file"()) macro 30 #define delete ("if you use new/delete make sure to include config.h at the top of the file"())
|
/external/webkit/Source/WebCore/bindings/scripts/ |
InFilesParser.pm | 62 sub new subroutine
|
/external/clang/test/CXX/expr/expr.unary/expr.new/ |
p19.cpp | 4 // Operator delete template for placement new with global lookup 9 static void* operator new(size_t) { 19 // Using the global operator new suppresses the search for a 21 ::new X0<2>; 23 new X0<3>; // expected-note 2{{instantiation}} 26 // Operator delete template for placement new[] with global lookup 31 static void* operator new[](size_t) { 41 // Using the global operator new suppresses the search for a 43 ::new X1<2> [17]; 45 new X1<3> [17]; // expected-note 2{{instantiation} [all...] |
/external/oprofile/libutil++/tests/ |
utility_tests.cpp | 13 #include <new> 24 void* operator new(size_t size) throw(bad_alloc) 30 void* operator new[](size_t size) throw(bad_alloc) 54 cerr << "new(size_t) leak\n"; 59 cerr << "new[](size_t) leak\n"; 70 scoped_ptr<A> a(new A); 72 scoped_ptr<A> a(new A); 83 scoped_array<A> b(new A[10]); 85 scoped_array<A> a(new A[10]);
|
/external/valgrind/main/massif/tests/ |
overloaded-new.cpp | 1 // operator new(unsigned) 2 // operator new[](unsigned) 3 // operator new(unsigned, std::nothrow_t const&) 4 // operator new[](unsigned, std::nothrow_t const&) 8 #include <new> 17 __attribute__((noinline)) void* operator new (std::size_t n) throw (std::bad_alloc) 22 __attribute__((noinline)) void* operator new (std::size_t n, std::nothrow_t const &) throw () 27 __attribute__((noinline)) void* operator new[] (std::size_t n) throw (std::bad_alloc) 32 __attribute__((noinline)) void* operator new[] (std::size_t n, std::nothrow_t const &) throw () 49 s* p1 = new s [all...] |
/external/webkit/Source/WebCore/bindings/js/ |
ScriptFunctionCall.h | 72 void* operator new(size_t) { ASSERT_NOT_REACHED(); return reinterpret_cast<void*>(0xbadbeef); } 73 void* operator new[](size_t) { ASSERT_NOT_REACHED(); return reinterpret_cast<void*>(0xbadbeef); }
|
/external/webkit/Source/WebCore/svg/ |
SVGFontFaceUriElement.h | 49 void* operator new(size_t size) { 50 return SVGElement::operator new(size); 52 void* operator new[](size_t size) { 53 return SVGElement::operator new[](size);
|
/external/ipsec-tools/src/racoon/ |
vmbuf.c | 124 vchar_t *new; local 131 if ((new = vmalloc(src->l)) == NULL) 134 memcpy(new->v, src->v, src->l); 136 return new;
|
/external/llvm/include/llvm/ |
GlobalAlias.h | 38 void *operator new(size_t s) { 39 return User::operator new(s, 1);
|
/external/mesa3d/src/glsl/ |
glsl_symbol_table.h | 29 #include <new> 56 /* Callers of this hieralloc-based new need not call delete. It's 58 static void* operator new(size_t size, void *ctx)
|
/external/qemu/elff/ |
elf_alloc.cc | 39 /* Allocate new chunk. */
60 void* DwarfAllocBase::operator new(size_t size, const ElfFile* elf) {
|
/external/webkit/Source/WebCore/rendering/ |
BidiRun.cpp | 55 void* BidiRun::operator new(size_t sz, RenderArena* renderArena) throw()
|
/ndk/sources/host-tools/ndk-stack/elff/ |
elf_alloc.cc | 39 /* Allocate new chunk. */ 60 void* DwarfAllocBase::operator new(size_t size, const ElfFile* elf) {
|
/external/webkit/Source/WebCore/css/ |
StyleBase.cpp | 71 void* StyleBase::operator new(size_t size) 74 return ::operator new(size); 77 void* StyleBase::operator new[](size_t size) 80 return ::operator new[](size);
|
/external/webkit/Source/WebCore/xml/ |
XSLImportRule.h | 42 return adoptRef(new XSLImportRule(parentSheet, href)); 56 void* operator new(size_t size) { 57 return StyleBase::operator new(size); 59 void* operator new[](size_t size) { 60 return StyleBase::operator new[](size);
|