Home
last modified time | relevance | path

Searched defs:throw (Results 1 – 25 of 43) sorted by relevance

12

/openbsd-src/gnu/lib/libstdc++/libstdc++/include/std/
H A Dstd_memory.h183 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { } in throw() function
192 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { } in throw() function
215 operator=(auto_ptr& __a) throw() in throw() function
233 operator=(auto_ptr<_Tp1>& __a) throw() in throw() function
262 operator*() const throw() { return *_M_ptr; } in throw() function
313 reset(element_type* __p = 0) throw() in throw() function
333 auto_ptr(auto_ptr_ref<element_type> __ref) throw() in throw() function
337 operator=(auto_ptr_ref<element_type> __ref) throw() in throw() function
348 operator auto_ptr_ref<_Tp1>() throw() in throw() function
352 operator auto_ptr<_Tp1>() throw() in throw() function
/openbsd-src/gnu/gcc/libstdc++-v3/include/std/
H A Dstd_memory.h190 auto_ptr(element_type* __p = 0) throw() : _M_ptr(__p) { } in throw() function
199 auto_ptr(auto_ptr& __a) throw() : _M_ptr(__a.release()) { } in throw() function
223 operator=(auto_ptr& __a) throw() in throw() function
241 operator=(auto_ptr<_Tp1>& __a) throw() in throw() function
270 operator*() const throw() in throw() function
329 reset(element_type* __p = 0) throw() in throw() function
349 auto_ptr(auto_ptr_ref<element_type> __ref) throw() in throw() function
353 operator=(auto_ptr_ref<element_type> __ref) throw() in throw() function
364 operator auto_ptr_ref<_Tp1>() throw() in throw() function
368 operator auto_ptr<_Tp1>() throw() in throw() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.pt/
H A Dauto_ptr.C10 explicit auto_ptr(X* p =0) throw() : px(p) {} in throw() function
11 auto_ptr(auto_ptr& r) throw() : px(r.release()) {} // ERROR - candidate in throw() function
15 auto_ptr& operator=(auto_ptr& r) throw() { in throw() function
19 template<typename Y> auto_ptr& operator=(auto_ptr<Y>& r) throw() { in throw() function
26 X& operator*() const throw() { return *px; } in throw() function
30 void reset(X* p=0) throw() { if (px != p) delete px, px = p; } in throw() function
32 auto_ptr(auto_ptr_ref<X> r) throw() : px(r.py) {} // ERROR - candidate in throw() function
33 template<typename Y> operator auto_ptr_ref<Y>() throw() { in throw() function
/openbsd-src/gnu/lib/libstdc++/libstdc++/include/bits/
H A Dstreambuf_iterator.h76 istreambuf_iterator(istream_type& __s) throw() in throw() function
79 istreambuf_iterator(streambuf_type* __s) throw() in throw() function
174 ostreambuf_iterator(streambuf_type* __s) throw () in throw() function
187 operator*() throw() in throw() function
H A Dstl_alloc.h652 allocator() throw() {} in throw() function
653 allocator(const allocator&) throw() {} in throw() function
656 ~allocator() throw() {} in throw() function
748 __allocator() throw() {} in throw() function
749 __allocator(const __allocator& __a) throw() in throw() function
756 ~__allocator() throw() {} in throw() function
H A Dpthread_allocimpl.h430 pthread_allocator() throw() {} in throw() function
431 pthread_allocator(const pthread_allocator& a) throw() {} in throw() function
435 ~pthread_allocator() throw() {} in throw() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/opt/
H A Dnoreturn-1.C26 allocator() throw() { } in throw() function
27 allocator(const allocator &) throw() {} in throw() function
63 infinint(long a = 0) throw(Egeneric) { in throw() function
70 ~infinint() throw(Egeneric) { in throw() function
H A Dexpect2.C6 struct X { ~X () throw() {} }; in throw() function
H A Dcfg2.C13 ~B() throw() {} in throw() function
/openbsd-src/gnu/gcc/libstdc++-v3/include/bits/
H A Dallocator.h100 allocator() throw() { } in throw() function
102 allocator(const allocator& __a) throw() in throw() function
108 ~allocator() throw() { } in throw() function
/openbsd-src/gnu/gcc/libstdc++-v3/include/ext/
H A Dnew_allocator.h68 new_allocator() throw() { } in throw() function
70 new_allocator(const new_allocator&) throw() { } in throw() function
75 ~new_allocator() throw() { } in throw() function
H A Dmalloc_allocator.h69 malloc_allocator() throw() { } in throw() function
71 malloc_allocator(const malloc_allocator&) throw() { } in throw() function
76 ~malloc_allocator() throw() { } in throw() function
H A Darray_allocator.h112 array_allocator(array_type* __array = NULL) throw() in throw() function
115 array_allocator(const array_allocator& __o) throw() in throw() function
122 ~array_allocator() throw() { } in throw() function
H A Dpool_allocator.h144 __pool_alloc() throw() { } in throw() function
146 __pool_alloc(const __pool_alloc&) throw() { } in throw() function
151 ~__pool_alloc() throw() { } in throw() function
H A Dthrow_allocator.h209 throw_allocator() throw() { } in throw() function
211 throw_allocator(const throw_allocator&) throw() { } in throw() function
216 ~throw_allocator() throw() { } in throw() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/compat/eh/
H A Dnew1_y.C6 void * operator new[] (size_t s) throw (std::bad_alloc) in throw() function
12 void operator delete[] (void *p) throw () in throw() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/eh/
H A Dnew1.C12 void * operator new[] (size_t s) throw (std::bad_alloc) in throw() function
18 void operator delete[] (void *p) throw () in throw() function
H A Dcond2.C4 A() throw() { } in throw() function
5 A(const A&) throw() { } in throw() function
/openbsd-src/gnu/lib/libstdc++/libstdc++/testsuite/
H A Dtestsuite_allocator.h121 tracker_alloc() throw() in throw() function
124 tracker_alloc(const tracker_alloc&) throw() in throw() function
131 ~tracker_alloc() throw() in throw() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.abi/
H A Dcxa_vec.C37 void *operator new[] (std::size_t size) throw (std::bad_alloc) in throw() function
47 void operator delete[] (void *ptr) throw () in throw() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.mike/
H A Deh9.C4 main() throw () { } in throw() function
/openbsd-src/gnu/usr.bin/perl/cpan/autodie/t/lib/autodie/test/
H A Dau.pm9 sub throw { subroutine
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.bob/
H A Ddelete1.C7 void *operator new[](size_t sz) throw() { in throw() function
/openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.dg/init/
H A Dnew5.C5 void * operator new[](size_t, std::nothrow_t const &) throw() in throw() function
/openbsd-src/gnu/usr.bin/perl/cpan/Test-Simple/lib/Test2/EventFacet/
H A DTrace.pm65 sub throw { global() subroutine

12