Home | History | Annotate | Download | only in Sema

Lines Matching defs:__except

47 }  // expected-error{{expected '__except' or '__finally' block}}
50 __except ( FilterExpression() ) { // expected-warning{{implicit declaration of function '__except' is invalid in C99}} \
64 __except( try_scope ? 1 : -1 ) // expected-error{{undeclared identifier 'try_scope'}} expected-error{{expected expression}}
73 __except( ) { // expected-error{{expected expression}} expected-error{{expected expression}}
81 __except ( FilterExpression(GetExceptionCode()) ) {
88 __except( FilterExpression(__exception_code()) ) {
95 __except( FilterExceptionInformation(__exception_info()) ) {
102 __except(FilterExceptionInformation( GetExceptionInformation() ) ) {
111 __except ( NotFilterExpression() ) { // expected-error{{filter expression type should be an integral value not 'const char *'}}
121 __except ( FilterExpression(GetExceptionCode()) ) {
143 __except( function_scope ? 1 : -1 ) {}
151 __except( 1 ) {
165 (void)__exception_code; // expected-error{{only allowed in __except block}}
166 (void)__exception_info; // expected-error{{only allowed in __except filter expression}}
169 (void)GetExceptionCode(); // expected-error{{only allowed in __except block}}
170 (void)GetExceptionInformation(); // expected-error{{only allowed in __except filter expression}}
180 } __except(1) {