Home | History | Annotate | Download | only in Sema

Lines Matching defs:__except

50 }  // expected-error{{expected '__except' or '__finally' block}}
53 __except ( FilterExpression() ) { // expected-warning{{implicit declaration of function '__except' is invalid in C99}} \
67 __except( try_scope ? 1 : -1 ) // expected-error{{undeclared identifier 'try_scope'}} expected-error{{expected expression}}
76 __except( ) { // expected-error{{expected expression}} expected-error{{expected expression}}
84 __except ( FilterExpression(GetExceptionCode()) ) {
91 __except( FilterExpression(__exception_code()) ) {
98 __except( FilterExceptionInformation(__exception_info()) ) {
105 __except(FilterExceptionInformation( GetExceptionInformation() ) ) {
114 __except ( NotFilterExpression() ) { // expected-error{{filter expression type should be an integral value not 'const char *'}}
124 __except ( FilterExpression(GetExceptionCode()) ) {
146 __except( function_scope ? 1 : -1 ) {}
158 __except( 1 ) {
173 (void)__exception_info(); // expected-error{{only allowed in __except filter expression}}
174 (void)GetExceptionInformation(); // expected-error{{only allowed in __except filter expression}}
181 (void)__exception_code(); // expected-error{{only allowed in __except block or filter expression}}
182 (void)GetExceptionCode(); // expected-error{{only allowed in __except block or filter expression}}
187 } __except(1) {
189 GetExceptionInformation(); // expected-error{{only allowed in __except filter expression}}
199 } __except(1) {
287 } __except(undeclared_identifier) { // expected-error {{use of undeclared identifier 'undeclared_identifier'}} expected-error {{expected expression}}