/external/clang/test/SemaObjC/ |
D | catch-stmt.m | 7 } @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) { }
|
D | scope-check.m | 11 } @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 …]
|
D | stmts.m | 11 } @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 (...) {
|
D | try-catch.m | 36 @catch (NSException *) {} 46 @throw; // expected-error {{@throw (rethrow) used outside of a @catch block}}
|
/external/clang/test/Parser/ |
D | objc-try-catch-1.m | 19 @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/ |
D | objc_stmts.h | 16 } @catch(A *a) { in catch() function 17 } @catch(B *b) { in catch() function 18 } @catch(...) { in catch() function
|
D | objc_stmts.m | 10 // CHECK: catch parm = "A *a" 11 // CHECK: catch parm = "B *b" 12 // CHECK: catch all
|
/external/clang/test/Rewriter/ |
D | rewrite-eh.m | 13 } @catch (NSException *e) { 15 @catch (Foo *f) { 17 @catch (...) {
|
D | rewrite-try-catch.m | 8 @catch (...) { SPLATCH(); @throw; } 18 @catch (Foo* localException) { 23 // no catch clause
|
/external/webkit/Source/WebKit/mac/WebView/ |
D | WebDelegateImplementationCaching.mm | 73 // 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/ |
D | nested-rethrow.m | 10 } @catch (id e) { 14 } @catch (id e) { 20 } @catch (...) {
|
D | exceptions.m | 11 } @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) {
|
D | metadata_symbols.m | 68 } @catch (EH1 *x) { 69 } @catch (EH2 *x) { 70 } @catch (EH3 *x) {
|
/external/clang/test/CodeGenObjCXX/ |
D | catch-id-type.mm | 27 catch( INTF<P>* error ) 31 catch( id error ) 37 catch (Class cl) {
|
/external/clang/test/Coverage/ |
D | objc-language-features.inc | 68 } @catch(A *e) { 71 // @catch param doesn't require name. 72 } @catch(B *) {
|
/external/clang/test/SemaObjCXX/ |
D | exceptions-fragile.mm | 9 …} catch (NSException *e) { // expected-warning {{can not catch an exception thrown with @throw in …
|
D | instantiate-stmt.mm | 62 // @try/@catch/@finally 69 @catch (T obj) { // expected-error{{@catch parameter is not a pointer to an interface type}}
|
/external/stlport/test/eh/ |
D | LeakCheck.h | 81 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/ |
D | dynamic-entries-no-cache.html-disabled | 38 } catch (e) { 84 } catch (ex) { 94 } catch (ex) { 104 } catch (ex) {
|
/external/llvm/test/FrontendObjC/ |
D | 2008-10-3-EhValue.m | 42 @catch(Frob *obj) { 45 @catch(id exc) {
|
/external/stlport/stlport/stl/config/ |
D | _apple.h | 111 # 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/ |
D | 2001-05-18-ExceptionHandling.txt | 68 } 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/ |
D | 2010-05-08-OneBit.ll | 50 i32 2, label %catch 56 catch: ; preds = %landing_pad
|
/external/webkit/Source/JavaScriptCore/ |
D | JavaScriptCorePrefix.h | 35 #undef catch
|
/external/webkit/Source/WebCore/platform/mac/ |
D | BlockExceptions.h | 31 #define END_BLOCK_OBJC_EXCEPTIONS } @catch(NSException *localException) { ReportBlockedObjCExceptio…
|