Searched defs:throw (Results 1 – 11 of 11) sorted by relevance
15 explicit auto_ptr(X *p = 0) throw() {} in throw() function16 auto_ptr(auto_ptr &) throw() {} in throw() function18 auto_ptr &operator=(auto_ptr &) throw() { return *this; } in throw() function19 template <class Y> auto_ptr &operator=(auto_ptr<Y> &) throw() { in throw() function22 auto_ptr &operator=(auto_ptr_ref<X> r) throw() { return *this; } in throw() function23 ~auto_ptr() throw() {} in throw() function24 auto_ptr(auto_ptr_ref<X> r) throw() : x_(r.y_) {} in throw() function25 template <class Y> operator auto_ptr_ref<Y>() throw() { in throw() function30 template <class Y> operator auto_ptr<Y>() throw() { return auto_ptr<Y>(x_); } in throw() function
4 …int throw; // expected-error {{expected member name or ';' after declaration specifiers; 'throw' i… field27 @property (readwrite, nonatomic) int a, b, throw; // expected-error {{expected member name or ';' a… property
4 int foo1(int case, int throw, int y) { // expected-error {{invalid parameter name: 'case' is a keyw… in foo1()
290 small_throws_on_copy(small_throws_on_copy && other) throw() { in throw() function330 large_throws_on_copy(large_throws_on_copy && other) throw() { in throw() function
11 void c(int() throw()) {} in c()
6 auto_ptr(_Tp* __p = 0) throw() : _M_ptr(__p) { } in throw() function
56 int throw = 1; in main() local
429 Holder<X>::Holder() throw() function434 X* Holder<X>::get() const throw() { function440 void Holder<X>::reset(X* p) throw() { function
89 #define throw macro
47 void throw(void *obj) { in throw() function