/external/chromium_org/sync/syncable/ |
syncable_read_transaction.h | 25 void* operator new(size_t size) { return (::operator new)(size); }
|
/external/chromium_org/third_party/WebKit/Source/ |
config.h | 40 // Helps us catch if anyone uses new or delete by accident in code and doesn't include "config.h". 41 #undef new macro
|
/external/chromium_org/third_party/WebKit/Source/core/ |
WebCorePrefixMac.h | 24 * 3) the special trick to catch us using new or delete without including "config.h" 78 #include <new> 94 #define new ("if you use new/delete make sure to include config.h at the top of the file"()) macro 95 #define delete ("if you use new/delete make sure to include config.h at the top of the file"())
|
/external/chromium_org/third_party/WebKit/Source/core/scripts/ |
InFilesParser.pm | 62 sub new subroutine
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/nouveau/ |
nouveau_heap.c | 104 struct nouveau_heap *new = r->next; local 106 new->prev = r->prev; 108 r->prev->next = new; 109 new->size += r->size; 110 new->start = r->start; 113 r = new;
|
/external/chromium_org/third_party/tlslite/tlslite/utils/ |
Cryptlib_AES.py | 8 def new(key, mode, IV): function
|
Cryptlib_RC4.py | 8 def new(key): function
|
Cryptlib_TripleDES.py | 9 def new(key, mode, IV): function
|
OpenSSL_AES.py | 8 def new(key, mode, IV): function
|
OpenSSL_RC4.py | 8 def new(key): function
|
OpenSSL_TripleDES.py | 8 def new(key, mode, IV): function
|
Python_AES.py | 8 def new(key, mode, IV): function
|
Python_RC4.py | 6 def new(key): function
|
/external/mesa3d/src/gallium/drivers/nouveau/ |
nouveau_heap.c | 104 struct nouveau_heap *new = r->next; local 106 new->prev = r->prev; 108 r->prev->next = new; 109 new->size += r->size; 110 new->start = r->start; 113 r = new;
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/localization/locales/locale/locale.cons/ |
char_pointer.pass.cpp | 15 #include <new> 22 void* operator new(std::size_t s) throw(std::bad_alloc)
|
locale_char_pointer_cat.pass.cpp | 15 #include <new> 22 void* operator new(std::size_t s) throw(std::bad_alloc)
|
locale_locale_cat.pass.cpp | 15 #include <new> 22 void* operator new(std::size_t s) throw(std::bad_alloc)
|
locale_string_cat.pass.cpp | 15 #include <new> 22 void* operator new(std::size_t s) throw(std::bad_alloc)
|
string.pass.cpp | 15 #include <new> 22 void* operator new(std::size_t s) throw(std::bad_alloc)
|
/ndk/tests/device/test-stlport_shared-exception/jni/ |
new1_4.cpp | 10 #include <new> 15 void* operator new(size_t size, double = 0.0) { return ::operator new(size);} 20 int main() { try { new A; } catch(...) {} }
|
new23.cpp | 6 inline void *operator new (size_t, void *p) throw () { return p; } 13 unsigned *data = new unsigned[2 * num]; 16 (i % 2 == 0) ? new (ptr) unsigned (2) : new (ptr++) unsigned (1);
|
new6.cpp | 2 // Test that we properly default-initialize the new int when () is given. 4 #include <new> 11 void *operator new (size_t size) throw (bad_alloc) 21 int *p = new int();
|
operators23.cpp | 3 // opr-new file 6 // Subject: g++-2.3.1 : Incorrectly calls overloaded operator new 17 void *operator new(size_t size) throw(); 25 void *blah::operator new(size_t size) throw(){ 34 blahPtr = new blah[100];
|
operators27.cpp | 3 // opr-new file 6 // Subject: G++ 2.4.3 and operator new 11 #include <new> 16 void * operator new(size_t, const std::nothrow_t&) throw() { FLAG=1; return 0; } 29 K * pK = new (std::nothrow) K( 10);
|
/ndk/tests/device/test-stlport_static-exception/jni/ |
new1_4.cpp | 10 #include <new> 15 void* operator new(size_t size, double = 0.0) { return ::operator new(size);} 20 int main() { try { new A; } catch(...) {} }
|