/ndk/tests/device/test-stlport_static-exception/jni/ |
new2_1.cpp | 6 #include <new> 23 newed = 0; // The libraries might call new before int main starts. 25 foo (new B (A ())); 36 void* operator new (size_t size) throw (std::bad_alloc)
|
p9706.cpp | 9 void *operator new(size_t sz) { ++count; return malloc (sz); } 22 // The standard library may have called new and/or delete during
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
hashlib.py | 9 new(name, string='') - returns a new hash object implementing the 14 than using new(): 57 # This tuple and __get_builtin_constructor() must be modified if a new 63 __all__ = __always_supported + ('new', 'algorithms') 70 return _sha.new 73 return _md5.new 107 """new(name, string='') - Return a new hashing object using the named algorithm; 114 """new(name, string='') - Return a new hashing object using the named algorithm 132 new = __py_new variable [all...] |
hmac.py | 28 """Create a new HMAC object. 33 A hashlib constructor returning a new hash object. 47 self.digest_cons = lambda d='': digestmod.new(d) 122 def new(key, msg = None, digestmod = None): function 123 """Create a new hashing object and return it.
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/idlelib/ |
FileList.py | 43 def new(self, filename=None): member in class:FileList 119 flist.new()
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
hashlib.py | 9 new(name, string='') - returns a new hash object implementing the 14 than using new(): 57 # This tuple and __get_builtin_constructor() must be modified if a new 63 __all__ = __always_supported + ('new', 'algorithms') 70 return _sha.new 73 return _md5.new 107 """new(name, string='') - Return a new hashing object using the named algorithm; 114 """new(name, string='') - Return a new hashing object using the named algorithm 132 new = __py_new variable [all...] |
hmac.py | 28 """Create a new HMAC object. 33 A hashlib constructor returning a new hash object. 47 self.digest_cons = lambda d='': digestmod.new(d) 122 def new(key, msg = None, digestmod = None): function 123 """Create a new hashing object and return it.
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/idlelib/ |
FileList.py | 43 def new(self, filename=None): member in class:FileList 119 flist.new()
|
/external/compiler-rt/lib/lsan/ |
lsan_interceptors.cc | 146 void *operator new(uptr size) { OPERATOR_NEW_BODY; } 148 void *operator new[](uptr size) { OPERATOR_NEW_BODY; } 150 void *operator new(uptr size, std::nothrow_t const&) { OPERATOR_NEW_BODY; } 152 void *operator new[](uptr size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
|
/bionic/libc/upstream-netbsd/libc/isc/ |
ev_streams.c | 71 evStream *new; local 74 OKNEW(new); 75 new->func = func; 76 new->uap = uap; 77 new->fd = fd; 78 new->flags = 0; 79 if (evSelectFD(opaqueCtx, fd, EV_WRITE, writable, new, &new->file) < 0) 81 if (copyvec(new, iov, iocnt) < 0) 83 new->prevDone = NULL 105 evStream *new; local [all...] |
/external/chromium/testing/gtest/samples/ |
sample10_unittest.cc | 55 // operator new and operator delete help us control water allocation. 56 void* operator new(size_t allocation_size) { 100 Water* water = new Water; 107 Water* water = new Water; 140 // We don't need to worry about deleting the new listener later, as 142 listeners.Append(new LeakChecker);
|
/external/chromium_org/testing/gtest/samples/ |
sample10_unittest.cc | 55 // operator new and operator delete help us control water allocation. 56 void* operator new(size_t allocation_size) { 99 Water* water = new Water; 106 Water* water = new Water; 139 // We don't need to worry about deleting the new listener later, as 141 listeners.Append(new LeakChecker);
|
/external/chromium_org/third_party/mesa/src/src/mesa/drivers/dri/i965/ |
brw_fs_cfg.h | 42 static void* operator new(size_t size, void *ctx) 71 static void* operator new(size_t size, void *ctx)
|
/external/chromium_org/third_party/re2/util/ |
arena.h | 6 // objects. Doing this the usual way (malloc, new) is slow, 14 // The global operator new that can be used as follows: 19 // Foo* foo = new (AllocateInArena, &arena) Foo; 38 // default alignment of 8, but ::operator new() uses alignment of 4, 90 // Syntax: new (AllocateInArena, arena) MyClass; 96 inline void* operator new(size_t size,
|
/external/chromium_org/v8/src/ |
allocation.cc | 38 void* Malloced::New(size_t size) { 41 v8::internal::FatalProcessOutOfMemory("Malloced operator new"); 61 void* Embedded::operator new(size_t size) { 72 void* AllStatic::operator new(size_t size) {
|
/external/gtest/samples/ |
sample10_unittest.cc | 55 // operator new and operator delete help us control water allocation. 56 void* operator new(size_t allocation_size) { 100 Water* water = new Water; 107 Water* water = new Water; 140 // We don't need to worry about deleting the new listener later, as 142 listeners.Append(new LeakChecker);
|
/external/mesa3d/src/mesa/drivers/dri/i965/ |
brw_fs_cfg.h | 42 static void* operator new(size_t size, void *ctx) 71 static void* operator new(size_t size, void *ctx)
|
/external/protobuf/gtest/samples/ |
sample10_unittest.cc | 55 // operator new and operator delete help us control water allocation. 56 void* operator new(size_t allocation_size) { 100 Water* water = new Water; 107 Water* water = new Water; 140 // We don't need to worry about deleting the new listener later, as 142 listeners.Append(new LeakChecker);
|
/external/qemu/elff/ |
elf_alloc.h | 70 * will use overwritten operators new/delete for the DWARF objects that use
107 * protection from mistakenly using "traditional" operator 'new' for object
120 /* Main operator new.
129 void* operator new(size_t size, const ElfFile* elf);
134 * operator in order to compliment overwritten operator 'new'.
142 * operator in order to compliment overwritten operator 'new'.
148 /* Default operator new.
151 * of operator 'new'.
153 void* operator new(size_t size) throw() {
|
/external/regex-re2/util/ |
arena.h | 6 // objects. Doing this the usual way (malloc, new) is slow, 14 // The global operator new that can be used as follows: 19 // Foo* foo = new (AllocateInArena, &arena) Foo; 38 // default alignment of 8, but ::operator new() uses alignment of 4, 90 // Syntax: new (AllocateInArena, arena) MyClass; 96 inline void* operator new(size_t size,
|
/external/v8/src/ |
allocation.cc | 38 void* Malloced::New(size_t size) { 41 v8::internal::FatalProcessOutOfMemory("Malloced operator new"); 61 void* Embedded::operator new(size_t size) { 72 void* AllStatic::operator new(size_t size) {
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/thread/thread.threads/thread.thread.class/thread.thread.constr/ |
F.pass.cpp | 17 #include <new> 23 void* operator new(std::size_t s) throw(std::bad_alloc)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.alg/ |
swap.pass.cpp | 18 #include <new> 24 void* operator new(std::size_t s) throw(std::bad_alloc)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/function.objects/func.wrap/func.wrap.func/func.wrap.func.mod/ |
swap.pass.cpp | 17 #include <new> 23 void* operator new(std::size_t s) throw(std::bad_alloc)
|
/ndk/sources/cxx-stl/llvm-libc++/libcxx/test/utilities/memory/util.smartptr/util.smartptr.shared/util.smartptr.shared.create/ |
make_shared.pass.cpp | 17 #include <new> 23 void* operator new(std::size_t s) throw(std::bad_alloc)
|