/openbsd-src/gnu/llvm/libcxxabi/src/ |
H A D | stdlib_exception.cpp | 40 bad_alloc::bad_alloc() noexcept in bad_alloc() function in std::bad_alloc 44 bad_alloc::~bad_alloc() noexcept in ~bad_alloc() 49 bad_alloc::what() const noexcept in what()
|
H A D | stdlib_new_delete.cpp | 39 throw std::bad_alloc(); in operator new() 159 throw std::bad_alloc(); in operator new()
|
/openbsd-src/gnu/llvm/libcxx/src/support/runtime/ |
H A D | exception_fallback.ipp | 102 bad_alloc::bad_alloc() noexcept 106 bad_alloc::~bad_alloc() noexcept 111 bad_alloc::what() const noexcept 113 return "std::bad_alloc";
|
H A D | exception_msvc.ipp | 134 bad_alloc::bad_alloc() noexcept 138 bad_alloc::~bad_alloc() noexcept 143 bad_alloc::what() const noexcept 145 return "std::bad_alloc";
|
H A D | exception_glibcxx.ipp | 16 bad_alloc::bad_alloc() noexcept
|
/openbsd-src/gnu/gcc/libstdc++-v3/libsupc++/ |
H A D | new_handler.cc | 48 std::bad_alloc::~bad_alloc() throw() { } in ~bad_alloc() 51 std::bad_alloc::what() const throw() in what()
|
H A D | new_op.cc | 38 using std::bad_alloc; 50 operator new (std::size_t sz) throw (std::bad_alloc) in operator new() 63 throw bad_alloc(); in operator new()
|
H A D | new | 56 * @c bad_alloc (or classes derived from it) is used to report allocation 58 class bad_alloc : public exception 61 bad_alloc() throw() { } 65 virtual ~bad_alloc() throw(); 86 * - normal single new and delete (no arguments, throw @c bad_alloc on error) 95 void* operator new(std::size_t) throw (std::bad_alloc); 96 void* operator new[](std::size_t) throw (std::bad_alloc);
|
H A D | new_opnt.cc | 35 using std::bad_alloc; 58 catch (bad_alloc &) in operator new()
|
H A D | new_opv.cc | 35 operator new[] (std::size_t sz) throw (std::bad_alloc) in operator new[]()
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/libsupc++/ |
H A D | new_op.cc | 35 using std::bad_alloc; 41 operator new (std::size_t sz) throw (std::bad_alloc) in operator new() 54 throw bad_alloc(); in operator new()
|
H A D | new | 51 * @c bad_alloc (or classes derived from it) is used to report allocation 53 class bad_alloc : public exception 56 bad_alloc() throw() { } 59 virtual ~bad_alloc() throw(); 73 * - normal single new and delete (no arguments, throw @c bad_alloc on error) 82 void* operator new(std::size_t) throw (std::bad_alloc); 83 void* operator new[](std::size_t) throw (std::bad_alloc);
|
H A D | new_handler.cc | 47 std::bad_alloc::~bad_alloc() throw() { } in ~bad_alloc()
|
H A D | new_opnt.cc | 34 using std::bad_alloc; 57 catch (bad_alloc &) in operator new()
|
H A D | new_opv.cc | 34 operator new[] (std::size_t sz) throw (std::bad_alloc) in operator new[]()
|
/openbsd-src/gnu/llvm/libcxx/include/ |
H A D | new | 19 class bad_alloc 23 bad_alloc() noexcept; 24 bad_alloc(const bad_alloc&) noexcept; 25 bad_alloc& operator=(const bad_alloc&) noexcept; 29 class bad_array_new_length : public bad_alloc // C++14 129 class _LIBCPP_EXCEPTION_ABI bad_alloc 133 bad_alloc() _NOEXCEPT; 134 ~bad_alloc() _NOEXCEPT override; 139 : public bad_alloc 155 class bad_alloc : public exception { [all …]
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.ns/ |
H A D | new1.C | 14 void *operator new(size_t n)throw(std::bad_alloc) in new() 18 throw std::bad_alloc(); in new()
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/20_util/ |
H A D | allocator_members.cc | 34 operator new(std::size_t n) throw(std::bad_alloc) in operator new() 72 catch(const std::bad_alloc& e) in test02()
|
/openbsd-src/gnu/llvm/libcxx/src/ |
H A D | new.cpp | 42 throw bad_alloc(); in __throw_bad_alloc() 76 throw std::bad_alloc(); in operator new() 196 throw std::bad_alloc(); in operator new()
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.abi/ |
H A D | cxa_vec.C | 37 void *operator new[] (std::size_t size) throw (std::bad_alloc) in throw() argument 42 throw std::bad_alloc (); in throw()
|
/openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/21_strings/ |
H A D | ctor_copy_dtor.cc | 100 catch(std::bad_alloc& fail) { in test01() 143 catch(std::bad_alloc& fail) { in test01()
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.robertl/ |
H A D | eb133a.C | 10 catch (std::bad_alloc) { // ERROR - parse error in main()
|
H A D | eb133.C | 12 catch (bad_alloc) { // ERROR - parse error in main()
|
H A D | eb133b.C | 12 catch (bad_alloc) { // ERROR - parse error in main()
|
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/ |
H A D | p755.C | 8 void* operator new(size_t sz) throw (std::bad_alloc) { in new()
|