Home
last modified time | relevance | path

Searched refs:bad_alloc (Results 1 – 15 of 15) sorted by relevance

/external/stlport/stlport/stl/
D_new.h75 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() function
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())
/external/stlport/test/compiler/
Deh.cc23 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()
/external/stlport/test/eh/
Dnc_alloc.cpp60 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[]()
/external/chromium/base/allocator/
Dallocator_shim.cc81 throw std::bad_alloc(); in call_new_handler()
88 } catch (const std::bad_alloc&) { in call_new_handler()
Dallocator_unittests.cc297 throw std::bad_alloc(); in TestNewHandler()
/external/webkit/JavaScriptCore/wtf/
DFastMalloc.h225 WTF_PRIVATE_INLINE void* operator new(size_t size) throw (std::bad_alloc) { return fastMalloc(size)… in new()
229 WTF_PRIVATE_INLINE void* operator new[](size_t size) throw (std::bad_alloc) { return fastMalloc(siz… in throw() argument
DFastMalloc.cpp3918 throw std::bad_alloc(); in CreateCacheIfNecessary()
3925 } catch (const std::bad_alloc&) { in CreateCacheIfNecessary()
/external/stlport/test/unit/
Dconfig_test.cpp106 catch (const bad_alloc&) in new_throw_bad_alloc()
Dallocator_test.cpp71 catch (bad_alloc const&) { in bad_alloc_test()
Dstack_allocator.h100 throw __STD bad_alloc();
/external/stlport/src/
Dallocators.cpp398 catch (const _STLP_STD::bad_alloc&) { in _S_chunk_alloc()
596 catch (const bad_alloc&) { in _S_chunk_alloc()
/external/stlport/doc/
DREADME.evc474 Without exception support, e.g. std::bad_alloc is not available, causing compile errors for some co…
/external/stlport/etc/
DChangeLog224 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.
DChangeLog-5.11848 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)
/external/webkit/WebCore/
DChangeLog-2002-12-0313174 Say std::bad_alloc instead of just bad_alloc.
13193 Say std::bad_alloc instead of just bad_alloc.