HomeSort by relevance Sort by last modified time
    Searched refs:nothrow_t (Results 1 - 25 of 61) sorted by null

1 2 3

  /bionic/libstdc++/include/
new 11 struct nothrow_t {};
12 extern const nothrow_t nothrow;
16 void* operator new(std::size_t, const std::nothrow_t&);
19 void operator delete(void*, const std::nothrow_t&) throw();
22 void* operator new[](std::size_t, const std::nothrow_t&);
25 void operator delete[](void*, const std::nothrow_t&) throw();
  /external/clang/test/CodeGen/
address-sanitizer-and-array-cookie.cpp 6 struct nothrow_t {}; struct in namespace:std
7 std::nothrow_t nothrow;
9 void *operator new[](size_t, const std::nothrow_t &) throw();
  /prebuilts/ndk/r10/sources/cxx-stl/system/include/
new 10 struct nothrow_t {};
11 extern const nothrow_t nothrow;
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
  /prebuilts/ndk/r11/sources/cxx-stl/system/include/
new 10 struct nothrow_t {};
11 extern const nothrow_t nothrow;
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
  /prebuilts/ndk/r13/sources/cxx-stl/system/include/
new 10 struct nothrow_t {};
11 extern const nothrow_t nothrow;
18 void* operator new(std::size_t, const std::nothrow_t&);
19 void* operator new[](std::size_t, const std::nothrow_t&);
20 void operator delete(void*, const std::nothrow_t&);
21 void operator delete[](void*, const std::nothrow_t&);
  /external/compiler-rt/lib/msan/
msan_new_delete.cc 24 // Fake std::nothrow_t to avoid including <new>.
26 struct nothrow_t {}; struct in namespace:std
39 void *operator new(size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
41 void *operator new[](size_t size, std::nothrow_t const&) { OPERATOR_NEW_BODY; }
52 void operator delete(void *ptr, std::nothrow_t const&) { OPERATOR_DELETE_BODY; }
54 void operator delete[](void *ptr, std::nothrow_t const&) {
  /external/compiler-rt/lib/tsan/rtl/
tsan_new_delete.cc 21 struct nothrow_t {}; struct in namespace:std
51 void *operator new(__sanitizer::uptr size, std::nothrow_t const&);
52 void *operator new(__sanitizer::uptr size, std::nothrow_t const&) {
57 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&);
58 void *operator new[](__sanitizer::uptr size, std::nothrow_t const&) {
83 void operator delete(void *ptr, std::nothrow_t const&);
84 void operator delete(void *ptr, std::nothrow_t const&) {
89 void operator delete[](void *ptr, std::nothrow_t const&);
90 void operator delete[](void *ptr, std::nothrow_t const&) {
  /prebuilts/ndk/r11/sources/cxx-stl/gabi++/src/
delete.cc 48 void operator delete(void* ptr, const std::nothrow_t &) _GABIXX_NOEXCEPT
55 void operator delete[](void* ptr, const std::nothrow_t &nt) _GABIXX_NOEXCEPT
  /prebuilts/ndk/r13/sources/cxx-stl/gabi++/src/
delete.cc 48 void operator delete(void* ptr, const std::nothrow_t &) _GABIXX_NOEXCEPT
55 void operator delete[](void* ptr, const std::nothrow_t &nt) _GABIXX_NOEXCEPT
  /toolchain/binutils/binutils-2.25/ld/testsuite/ld-elf/
del.cc 6 operator delete (void *ptr, const std::nothrow_t&) throw ()
26 operator delete[] (void *ptr, const std::nothrow_t&) throw ()
new.cc 9 operator new (std::size_t sz, const std::nothrow_t&) throw()
44 operator new[] (std::size_t sz, const std::nothrow_t& nothrow) throw()
  /bionic/libc/bionic/
new.cpp 24 const std::nothrow_t std::nothrow = {};
50 void* operator new(std::size_t size, const std::nothrow_t&) {
54 void* operator new[](std::size_t size, const std::nothrow_t&) {
58 void operator delete(void* ptr, const std::nothrow_t&) throw() {
62 void operator delete[](void* ptr, const std::nothrow_t&) throw() {
  /external/compiler-rt/lib/scudo/
scudo_new_delete.cpp 24 // Fake std::nothrow_t to avoid including <new>.
26 struct nothrow_t {}; struct in namespace:std
38 void *operator new(size_t size, std::nothrow_t const&) {
42 void *operator new[](size_t size, std::nothrow_t const&) {
55 void operator delete(void *ptr, std::nothrow_t const&) NOEXCEPT {
59 void operator delete[](void *ptr, std::nothrow_t const&) NOEXCEPT {
  /external/libchrome/base/allocator/
allocator_shim_override_cpp_symbols.h 30 const std::nothrow_t&) __THROW
34 const std::nothrow_t&) __THROW
37 SHIM_ALWAYS_EXPORT void operator delete(void* p, const std::nothrow_t&) __THROW
41 const std::nothrow_t&) __THROW
  /external/compiler-rt/lib/asan/
asan_new_delete.cc 51 // Fake std::nothrow_t to avoid including <new>.
53 struct nothrow_t {}; struct in namespace:std
82 void *operator new(size_t size, std::nothrow_t const&)
85 void *operator new[](size_t size, std::nothrow_t const&)
95 INTERCEPTOR(void *, _ZnwmRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
98 INTERCEPTOR(void *, _ZnamRKSt9nothrow_t, size_t size, std::nothrow_t const&) {
117 void operator delete(void *ptr, std::nothrow_t const&) {
121 void operator delete[](void *ptr, std::nothrow_t const&) {
142 INTERCEPTOR(void, _ZdlPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&) {
145 INTERCEPTOR(void, _ZdaPvRKSt9nothrow_t, void *ptr, std::nothrow_t const&)
    [all...]
  /external/valgrind/massif/tests/
overloaded-new.cpp 3 // operator new(unsigned, std::nothrow_t const&)
4 // operator new[](unsigned, std::nothrow_t const&)
10 using std::nothrow_t;
22 __attribute__((noinline)) void* operator new (std::size_t n, std::nothrow_t const &) throw ()
32 __attribute__((noinline)) void* operator new[] (std::size_t n, std::nothrow_t const &) throw ()
new-cpp.cpp 3 // operator new(unsigned, std::nothrow_t const&)
4 // operator new[](unsigned, std::nothrow_t const&)
10 using std::nothrow_t;
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.single/
sized_delete_calls_unsized_delete.pass.cpp 32 void operator delete(void* p, const std::nothrow_t&) TEST_NOEXCEPT
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.single/
sized_delete_calls_unsized_delete.pass.cpp 30 void operator delete(void* p, const std::nothrow_t&) throw()
  /external/libcxx/src/
new.cpp 37 const nothrow_t nothrow = {};
89 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT
115 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT
142 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT
163 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT
211 operator new(size_t size, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT
237 operator new[](size_t size, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT
268 operator delete(void* ptr, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT
289 operator delete[] (void* ptr, std::align_val_t alignment, const std::nothrow_t&) _NOEXCEPT
  /external/clang/test/CodeGenCXX/
new.cpp 23 struct nothrow_t {}; struct in namespace:std
25 std::nothrow_t nothrow;
34 void *operator new(size_t, const std::nothrow_t &) throw();
35 void *operator new[](size_t, const std::nothrow_t &) throw();
36 void operator delete(void *, const std::nothrow_t &) throw();
37 void operator delete[](void *, const std::nothrow_t &) throw();
  /external/libcxx/test/std/language.support/support.dynamic/new.delete/new.delete.array/
sized_delete_array_calls_unsized_delete_array.pass.cpp 32 void operator delete[](void* p, const std::nothrow_t&) TEST_NOEXCEPT
  /external/libcxxabi/src/
cxa_new_delete.cpp 75 operator new(size_t size, const std::nothrow_t&) _NOEXCEPT
112 operator new[](size_t size, const std::nothrow_t&) _NOEXCEPT
150 operator delete(void* ptr, const std::nothrow_t&) _NOEXCEPT
174 operator delete[] (void* ptr, const std::nothrow_t&) _NOEXCEPT
  /prebuilts/ndk/r11/sources/cxx-stl/llvm-libc++abi/libcxxabi/src/
cxa_new_delete.cpp 69 operator new(size_t size, const std::nothrow_t&)
110 operator new[](size_t size, const std::nothrow_t&)
154 operator delete(void* ptr, const std::nothrow_t&)
188 operator delete[] (void* ptr, const std::nothrow_t&)
  /prebuilts/ndk/r13/sources/cxx-stl/llvm-libc++/test/std/language.support/support.dynamic/new.delete/new.delete.array/
sized_delete_array_calls_unsized_delete_array.pass.cpp 30 void operator delete[](void* p, const std::nothrow_t&) throw()

Completed in 1395 milliseconds

1 2 3