/prebuilts/ndk/5/sources/cxx-stl/system/include/ |
new | 11 extern const nothrow_t nothrow;
|
/prebuilts/ndk/6/sources/cxx-stl/system/include/ |
new | 11 extern const nothrow_t nothrow;
|
/prebuilts/ndk/7/sources/cxx-stl/system/include/ |
new | 11 extern const nothrow_t nothrow;
|
/prebuilts/ndk/8/sources/cxx-stl/system/include/ |
new | 11 extern const nothrow_t nothrow;
|
/prebuilts/ndk/9/sources/cxx-stl/system/include/ |
new | 11 extern const nothrow_t nothrow;
|
/external/clang/test/CodeGenCXX/ |
new.cpp | 22 std::nothrow_t nothrow; 301 (void) new (nothrow) S[3]; 325 (void) operator new[](3, nothrow);
|
/frameworks/compile/libbcc/lib/ExecutionEngine/ |
ObjectLoader.cpp | 43 result = new (std::nothrow) ObjectLoader(); 52 result->mImpl = new (std::nothrow) ELFObjectLoaderImpl(); 81 result->mDebugImage = new (std::nothrow) uint8_t [ pMemSize ];
|
/frameworks/compile/libbcc/lib/Core/ |
BCCContext.cpp | 32 GlobalContext = new (std::nothrow) BCCContext();
|
/external/chromium/base/allocator/ |
generic_allocators.cc | 13 inline void* generic_cpp_alloc(size_t size, bool nothrow) { 19 if (!call_new_handler(nothrow))
|
allocator_shim.cc | 71 inline bool call_new_handler(bool nothrow) { 92 if (nothrow) 102 if (!nothrow)
|
/external/chromium_org/base/allocator/ |
generic_allocators.cc | 13 inline void* generic_cpp_alloc(size_t size, bool nothrow) { 19 if (!call_new_handler(nothrow))
|
/external/stlport/stlport/stl/ |
_new.h | 67 # define nothrow nothrow_t() macro 98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
|
/ndk/sources/cxx-stl/stlport/stlport/stl/ |
_new.h | 67 # define nothrow nothrow_t() macro 98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/i686-linux/include/c++/4.4.3/bits/ |
stl_tempbuf.h | 81 * Provides the nothrow exception guarantee. 95 std::nothrow)); 113 { ::operator delete(__p, std::nothrow); }
|
/prebuilts/ndk/5/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_tempbuf.h | 81 * Provides the nothrow exception guarantee. 95 std::nothrow)); 113 { ::operator delete(__p, std::nothrow); }
|
/prebuilts/ndk/5/sources/cxx-stl/stlport/stlport/stl/ |
_new.h | 67 # define nothrow nothrow_t() macro 98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
|
/prebuilts/ndk/6/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_tempbuf.h | 81 * Provides the nothrow exception guarantee. 95 std::nothrow)); 113 { ::operator delete(__p, std::nothrow); }
|
/prebuilts/ndk/6/sources/cxx-stl/stlport/stlport/stl/ |
_new.h | 67 # define nothrow nothrow_t() macro 98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
|
/prebuilts/ndk/7/sources/cxx-stl/gnu-libstdc++/include/bits/ |
stl_tempbuf.h | 81 * Provides the nothrow exception guarantee. 95 std::nothrow)); 113 { ::operator delete(__p, std::nothrow); }
|
/prebuilts/ndk/7/sources/cxx-stl/stlport/stlport/stl/ |
_new.h | 67 # define nothrow nothrow_t() macro 98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
|
/prebuilts/ndk/8/sources/cxx-stl/gnu-libstdc++/4.4.3/include/bits/ |
stl_tempbuf.h | 81 * Provides the nothrow exception guarantee. 95 std::nothrow)); 113 { ::operator delete(__p, std::nothrow); }
|
/prebuilts/ndk/8/sources/cxx-stl/stlport/stlport/stl/ |
_new.h | 67 # define nothrow nothrow_t() macro 98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
|
/prebuilts/ndk/9/sources/cxx-stl/EH/stlport/stlport/stl/ |
_new.h | 67 # define nothrow nothrow_t() macro 98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
|
/external/chromium_org/courgette/ |
assembly_program.cc | 162 return Emit(new(std::nothrow) PeRelocsInstruction()); 166 return Emit(new(std::nothrow) ElfRelocsInstruction()); 170 return Emit(new(std::nothrow) ElfARMRelocsInstruction()); 174 return Emit(new(std::nothrow) OriginInstruction(rva)); 183 return Emit(new(std::nothrow) BytesInstruction(values, len)); 187 return Emit(new(std::nothrow) InstructionWithLabel(REL32, label)); 192 return Emit(new(std::nothrow) InstructionWithLabelARM(REL32ARM, op, label, 197 return Emit(new(std::nothrow) InstructionWithLabel(ABS32, label)); 252 slot = new(std::nothrow) Label(rva); 390 scoped_ptr<EncodedProgram> encoded(new(std::nothrow) EncodedProgram()) [all...] |
/external/chromium_org/base/ |
security_unittest.cc | 26 using std::nothrow; 135 HideValueFromCompiler(new (nothrow) VeryLargeStruct)); 143 HideValueFromCompiler(new (nothrow) char[kTooBigAllocSize])); 175 // IOS doesn't honor nothrow, so disable the test there. 189 scoped_ptr<char[][kArraySize]> array_pointer(new (nothrow) 197 scoped_ptr<char[][kArraySize2]> array_pointer(new (nothrow)
|