Lines Matching refs:throw
46 bad_alloc() throw();
47 virtual ~bad_alloc() throw();
48 virtual const char* what() const throw();
52 new_handler set_new_handler(new_handler) throw();
56 void* operator new(std::size_t size) throw(std::bad_alloc);
57 void* operator new(std::size_t size, const std::nothrow_t&) throw();
58 void* operator new[](std::size_t size) throw(std::bad_alloc);
59 void* operator new[](std::size_t size, const std::nothrow_t&) throw();
61 void operator delete[](void* ptr) throw();
62 void operator delete[](void* const, std::nothrow_t&) throw();
63 void operator delete(void* ptr) throw();
64 void operator delete(void*, const std::nothrow_t&) throw();
66 inline void* operator new(std::size_t, void* p) throw() { return p; }
67 inline void* operator new[](std::size_t, void* p) throw() { return p; }
68 inline void operator delete(void*, void*) throw() {}
69 inline void operator delete[](void*, void*) throw() {}