Lines Matching full:throw
5 #define N(e) static_assert(!noexcept(e), "expected throw")
15 N(throw 0); in simple()
16 N((throw 0, 0)); in simple()
20 void allspec() throw(...);
21 void intspec() throw(int);
22 void emptyspec() throw();
38 void (*pallspec)() throw(...);
39 void (*pintspec)() throw(int);
40 void (*pemptyspec)() throw();
43 funcptr returnsptr() throw();
59 void allspec() throw(...);
60 void intspec() throw(int);
61 void emptyspec() throw();
73 void (S1::*mpallspec)() throw(...);
74 void (S1::*mpintspec)() throw(int);
75 void (S1::*mpemptyspec)() throw();
87 S2(int, int) throw();
89 void operator -() throw();
91 void operator -(int) throw();
93 operator float() throw();
96 void *operator new(__typeof__(sizeof(int)) sz, int) throw();
101 ~Bad1() throw(int);
104 void operator delete(void*) throw(int);
130 virtual ~V() throw();
181 virtual ~S3() throw();
182 S3() throw();
191 void operator +(const S1&, float) throw();