Home
last modified time | relevance | path

Searched refs:catch (Results 1 – 25 of 222) sorted by relevance

123456789

/external/clang/test/SemaObjC/
Dcatch-stmt.m7 } @catch (void a) { // expected-error{{@catch parameter is not a pointer to an interface type}}
8 } @catch (int) { // expected-error{{@catch parameter is not a pointer to an interface type}}
9 } @catch (int *b) { // expected-error{{@catch parameter is not a pointer to an interface type}}
10 } @catch (id <P> c) { // expected-error{{illegal qualifiers on @catch parameter}}
11 } @catch(A* a) { }
Dscope-check.m11 } @catch (A *x) { // expected-note {{jump bypasses initialization of @catch block}}
13 } @catch (B *x) {
14 } @catch (C *c) {
22 } @catch (C *c) { // expected-note {{jump bypasses initialization of @catch block}}
25 } @catch (B *c) { // expected-note {{jump bypasses initialization of @catch block}}
34 } @catch (C *c) {
42 } @catch (A *c) {
43 } @catch (B *c) {
44 } @catch (C *c) { // expected-note {{jump bypasses initialization of @catch block}}
71 } @catch (...) {}
[all …]
Dstmts.m11 } @catch (NSException *x) { // expected-error {{unknown type name 'NSException'}}
12 …} @catch (struct some_struct x) { // expected-error {{@catch parameter is not a pointer to an inte…
13 } @catch (int x) { // expected-error {{@catch parameter is not a pointer to an interface type}}
14 …} @catch (static NSObject *y) { // expected-error {{@catch parameter cannot have storage specifier…
15 } @catch (...) {
Dtry-catch.m36 @catch (NSException *) {}
46 @throw; // expected-error {{@throw (rethrow) used outside of a @catch block}}
/external/clang/test/Parser/
Dobjc-try-catch-1.m19 @catch (Frob* ex) {
22 @catch (Frob1* ex) {
29 @catch (Frob* ex) {
33 @catch (float x) { // expected-error {{@catch parameter is not a pointer to an interface type}}
36 @catch(...) {
42 @try { // expected-error {{@try statement without a @catch and @finally clause}}
50 @try {}// expected-error {{@try statement without a @catch and @finally clause}}
56 @try {}// expected-error {{@try statement without a @catch and @finally clause}}
64 } @catch (...) {}
67 } @catch (...) {}
/external/clang/test/PCH/
Dobjc_stmts.h16 } @catch(A *a) { in catch() function
17 } @catch(B *b) { in catch() function
18 } @catch(...) { in catch() function
Dobjc_stmts.m10 // CHECK: catch parm = "A *a"
11 // CHECK: catch parm = "B *b"
12 // CHECK: catch all
/external/clang/test/Rewriter/
Drewrite-eh.m13 } @catch (NSException *e) {
15 @catch (Foo *f) {
17 @catch (...) {
Drewrite-try-catch.m8 @catch (...) { SPLATCH(); @throw; }
18 @catch (Foo* localException) {
23 // no catch clause
/external/webkit/Source/WebKit/mac/WebView/
DWebDelegateImplementationCaching.mm73 // preventing more ObjC message dispatch and compensating for the expense of the @try/@catch.
90 } @catch(id exception) {
104 } @catch(id exception) {
118 } @catch(id exception) {
132 } @catch(id exception) {
146 } @catch(id exception) {
160 } @catch(id exception) {
174 } @catch(id exception) {
188 } @catch(id exception) {
202 } @catch(id exception) {
[all …]
/external/clang/test/CodeGenObjC/
Dnested-rethrow.m10 } @catch (id e) {
14 } @catch (id e) {
20 } @catch (...) {
Dexceptions.m11 } @catch(NSArray *e) {
13 } @catch (id e) {
67 } @catch (id) {
147 // finally.no-call-exit: Predecessor is when the catch throws.
153 // finally.call-exit: Predecessors are the @try and @catch fallthroughs
154 // as well as the no-match case in the catch mechanism. The i1 is whether
173 } @catch (NSArray *a) {
Dmetadata_symbols.m68 } @catch (EH1 *x) {
69 } @catch (EH2 *x) {
70 } @catch (EH3 *x) {
/external/clang/test/CodeGenObjCXX/
Dcatch-id-type.mm27 catch( INTF<P>* error )
31 catch( id error )
37 catch (Class cl) {
/external/clang/test/Coverage/
Dobjc-language-features.inc68 } @catch(A *e) {
71 // @catch param doesn't require name.
72 } @catch(B *) {
/external/clang/test/SemaObjCXX/
Dexceptions-fragile.mm9 …} catch (NSException *e) { // expected-warning {{can not catch an exception thrown with @throw in …
Dinstantiate-stmt.mm62 // @try/@catch/@finally
69 @catch (T obj) { // expected-error{{@catch parameter is not a pointer to an interface type}}
/external/stlport/test/eh/
DLeakCheck.h81 catch (...) {} // Just try again. in catch() function
118 catch(...) {} // Just try again. in catch() function
164 catch (...) { in catch() function
/external/webkit/LayoutTests/http/tests/appcache/
Ddynamic-entries-no-cache.html-disabled38 } catch (e) {
84 } catch (ex) {
94 } catch (ex) {
104 } catch (ex) {
/external/llvm/test/FrontendObjC/
D2008-10-3-EhValue.m42 @catch(Frob *obj) {
45 @catch(id exc) {
/external/stlport/stlport/stl/config/
D_apple.h111 # define _STLP_MPWFIX_CATCH }catch(...){throw;} //*TY 06/01/2000 - exception handling …
112 # define _STLP_MPWFIX_CATCH_ACTION(action) }catch(...){action;throw;} //*TY 06/01/2000 - exception…
/external/llvm/docs/HistoricalNotes/
D2001-05-18-ExceptionHandling.txt68 } catch (int) {
71 } catch (double) {
133 d->~D(); // destruct D as it goes out of scope when entering catch clauses
155 ...int Stuff... // The action to perform from the catch block
158 ...double Stuff... // The action to perform from the catch block
159 goto TryCleanup // This catch block rethrows the exception
/external/llvm/test/Transforms/GVN/
D2010-05-08-OneBit.ll50 i32 2, label %catch
56 catch: ; preds = %landing_pad
/external/webkit/Source/JavaScriptCore/
DJavaScriptCorePrefix.h35 #undef catch
/external/webkit/Source/WebCore/platform/mac/
DBlockExceptions.h31 #define END_BLOCK_OBJC_EXCEPTIONS } @catch(NSException *localException) { ReportBlockedObjCExceptio…

123456789