Lines Matching refs:__except
53 …__except ( FilterExpression() ) { // expected-warning{{implicit declaration of function '__except'… in TEST()
67 …__except( try_scope ? 1 : -1 ) // expected-error{{undeclared identifier 'try_scope'}} expected-err… in TEST()
76 __except( ) { // expected-error{{expected expression}} expected-error{{expected expression}} in TEST()
84 __except ( FilterExpression(GetExceptionCode()) ) { in TEST()
91 __except( FilterExpression(__exception_code()) ) { in TEST()
98 __except( FilterExceptionInformation(__exception_info()) ) { in TEST()
105 __except(FilterExceptionInformation( GetExceptionInformation() ) ) { in TEST()
114 …__except ( NotFilterExpression() ) { // expected-error{{filter expression type should be an integr… in TEST()
124 __except ( FilterExpression(GetExceptionCode()) ) { in TEST()
146 __except( function_scope ? 1 : -1 ) {} in TEST()
158 __except( 1 ) { in TEST()
187 } __except(1) { in TEST()
199 } __except(1) { in test_seh_leave_stmt()
287 …} __except(undeclared_identifier) { // expected-error {{use of undeclared identifier 'undeclared_i… in test_typo_in_except()