/reactos/sdk/include/c++/stlport/stl/ |
H A D | _new.h | 75 class bad_alloc : public exception { 77 bad_alloc () _STLP_NOTHROW_INHERENTLY { } in bad_alloc() function 78 bad_alloc(const bad_alloc&) _STLP_NOTHROW_INHERENTLY { } in bad_alloc() argument 79 bad_alloc& operator=(const bad_alloc&) _STLP_NOTHROW_INHERENTLY {return *this;} 80 ~bad_alloc () _STLP_NOTHROW_INHERENTLY { } in ~bad_alloc() 93 using _STLP_VENDOR_EXCEPT_STD::bad_alloc; 118 # define _STLP_THROW_BAD_ALLOC _STLP_THROW(_STLP_STD::bad_alloc())
|
/reactos/sdk/lib/3rdparty/stlport/test/compiler/ |
H A D | eh.cc | 23 catch (bad_alloc const&) { in bad_alloc_test() 40 catch ( bad_alloc const & ) { in bad_alloc_test1() 52 throw bad_alloc(); in main() 54 catch ( bad_alloc& ) { in main()
|
/reactos/sdk/lib/cpprt/ |
H A D | new_nothrow.cpp | 10 void* operator new (std::size_t) throw(std::bad_alloc); 11 void* operator new[] (std::size_t) throw(std::bad_alloc); 21 catch (std::bad_alloc) in operator new() 33 catch (std::bad_alloc) in operator new[]()
|
/reactos/sdk/lib/crt/include/internal/ |
H A D | wine_msc.h | 40 bad_alloc* __thiscall MSVCRT_bad_alloc_copy_ctor(bad_alloc* _this, const bad_alloc* rhs); 41 bad_alloc* __thiscall MSVCRT_bad_alloc_copy_ctor(bad_alloc* _this, const bad_alloc* rhs); 42 void __thiscall MSVCRT_bad_alloc_dtor(bad_alloc* _this);
|
/reactos/sdk/include/c++/ |
H A D | new | 11 class bad_alloc : public exception 14 bad_alloc(const char *name = "bad alloc") throw() 17 virtual ~bad_alloc() throw() { } 22 using ::bad_alloc;
|
/reactos/sdk/lib/3rdparty/stlport/test/eh/ |
H A D | nc_alloc.cpp | 60 throw EH_STD::bad_alloc(); in maybe_fail() 207 throw(EH_STD::bad_alloc) in operator new() 223 void* _STLP_CALL operator new[](size_t size ) throw(EH_STD::bad_alloc) { in operator new[]()
|
/reactos/sdk/lib/crt/wine/ |
H A D | cpp.c | 536 typedef exception bad_alloc; typedef 541 bad_alloc * __thiscall bad_alloc_copy_ctor(bad_alloc * _this, const bad_alloc * rhs) in bad_alloc_copy_ctor() 548 void __thiscall bad_alloc_dtor(bad_alloc * _this) in bad_alloc_dtor() 562 __ASM_VTABLE(bad_alloc, 583 DEFINE_RTTI_DATA1( bad_alloc, 0, &exception_rtti_base_descriptor, ".?AVbad_alloc@std@@" ) 596 DEFINE_CXX_DATA1( bad_alloc, &exception_cxx_type_info, bad_alloc_dtor ) in DEFINE_CXX_EXCEPTION0() 625 bad_alloc e; in throw_bad_alloc()
|
/reactos/modules/rosapps/applications/net/roshttpd/ |
H A D | roshttpd.cpp | 48 } catch (bad_alloc&) { in Run()
|
H A D | config.cpp | 52 } catch (bad_alloc&) { in Default()
|
H A D | httpd.cpp | 489 } catch (bad_alloc&) { in Execute()
|
/reactos/sdk/lib/3rdparty/stlport/test/unit/ |
H A D | config_test.cpp | 106 catch (const bad_alloc&) in new_throw_bad_alloc()
|
H A D | allocator_test.cpp | 71 catch (bad_alloc const&) { in bad_alloc_test()
|
H A D | stack_allocator.h | 100 throw __STD bad_alloc();
|
/reactos/sdk/include/psdk/ |
H A D | driverspecs.h | 153 void* __cdecl operator new(size_t size) throw(std::bad_alloc); \ 154 void* __cdecl operator new[](size_t size) throw(std::bad_alloc); \
|
/reactos/sdk/lib/3rdparty/stlport/src/ |
H A D | allocators.cpp | 398 catch (const _STLP_STD::bad_alloc&) { in _S_chunk_alloc() 596 catch (const bad_alloc&) { in _S_chunk_alloc()
|
/reactos/sdk/lib/3rdparty/stlport/doc/ |
H A D | README.evc4 | 74 Without exception support, e.g. std::bad_alloc is not available, causing compile errors for some co…
|
/reactos/sdk/lib/3rdparty/stlport/build/test/unit/ |
H A D | STATUS | 147 Notes: bad_alloc tests crash:
|
/reactos/sdk/lib/3rdparty/stlport/etc/ |
H A D | ChangeLog | 224 throw a bad_alloc exception. 480 bad_alloc exceptions. 492 bad_alloc exception. Definition of this macro is now in _new.h 791 exceptions like bad_alloc are not silently eaten. _S_initialize 1898 In case of memory starvation, we throw a bad_alloc exception.
|
H A D | ChangeLog-5.1 | 1848 check length_error exception rather than bad_alloc. 1932 should result in a bad_alloc exception. 1940 result in a bad_alloc exception. Idem for reserve method. 3763 version that announce to be similar to .Net 2005 beta do not throw bad_alloc 6942 bad_alloc and some other classes into STLport's namespace 7088 operator behavior and bad_alloc exception definition. 7396 bad_alloc but that do not throw it! (thanks ?) 8268 * <new> : fixed throw specification for bad_alloc (has to be inherited)
|