Searched defs:nothrow (Results 1 - 10 of 10) sorted by relevance

/external/libcxx/src/
H A Dnew.cpp154 const nothrow_t nothrow = {}; member in namespace:std
/external/stlport/stlport/stl/
H A D_new.h67 # define nothrow nothrow_t() macro
98 using _STLP_VENDOR_EXCEPT_STD::nothrow;
/external/clang/test/Analysis/
H A DNewDelete-custom.cpp14 void *operator new(std::size_t size, std::nothrow_t& nothrow) throw() { return allocator(size); } argument
60 void *p = operator new(0, std::nothrow);
67 int *p = new(std::nothrow) int;
/external/chromium_org/base/allocator/
H A Dgeneric_allocators.cc13 inline void* generic_cpp_alloc(size_t size, bool nothrow) { argument
19 if (!call_new_handler(nothrow))
H A Dallocator_shim.cc57 inline bool call_new_handler(bool nothrow) { argument
79 if (nothrow)
89 if (!nothrow)
/external/stlport/src/
H A Ddll_main.cpp90 const nothrow_t nothrow /* = {} */; variable
/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Ddebugallocation.cc1111 inline void* debug_cpp_alloc(size_t size, int new_type, bool nothrow) { argument
1139 if (nothrow) return 0;
1148 if (!nothrow) throw;
H A Dtcmalloc.cc251 // And the nothrow variants of these:
257 // nothrow-delete internally. See, eg:
1029 inline void* cpp_alloc(size_t size, bool nothrow);
1418 inline void* cpp_alloc(size_t size, bool nothrow) { argument
1446 if (nothrow) return 0;
1455 if (!nothrow) throw;
1625 // (via ::operator delete(ptr, nothrow)).
/external/chromium_org/third_party/tcmalloc/vendor/src/
H A Ddebugallocation.cc1104 inline void* debug_cpp_alloc(size_t size, int new_type, bool nothrow) { argument
1132 if (nothrow) return 0;
1141 if (!nothrow) throw;
H A Dtcmalloc.cc254 // And the nothrow variants of these:
260 // nothrow-delete internally. See, eg:
1018 inline void* cpp_alloc(size_t size, bool nothrow);
1373 inline void* cpp_alloc(size_t size, bool nothrow) { argument
1401 if (nothrow) return 0;
1410 if (!nothrow) throw;
1573 // (via ::operator delete(ptr, nothrow)).

Completed in 259 milliseconds