HomeSort by relevance Sort by last modified time
    Searched full:catch (Results 51 - 75 of 15925) sorted by null

1 23 4 5 6 7 8 91011>>

  /ndk/tests/device/test-stlport_static-exception/jni/
catch9p.cpp 6 // We cannot catch an ambiguous base class.
33 catch(A *p) { abort(); } // A is ambiguous
34 catch(D *p) { caught = 1; if (p != d) abort();}
35 catch(...) { abort(); }
40 catch(A *p) { abort(); } // A is ambiguous
41 catch(B *p) { caught = 1; if (p != d) abort();}
42 catch(...) { abort(); }
47 catch(A *p) { abort(); } // A is ambiguous
48 catch(C *p) { caught = 1; if (p != d) abort();}
49 catch(...) { abort();
    [all...]
catch8p.cpp 6 // We cannot catch an ambiguous base class.
32 catch(A *p) { abort(); } // A is ambiguous
33 catch(D *p) { caught = 1; if (p != d) abort();}
34 catch(...) { abort(); }
39 catch(A *p) { abort(); } // A is ambiguous
40 catch(B *p) { caught = 1; if (p != d) abort();}
41 catch(...) { abort(); }
46 catch(A *p) { abort(); } // A is ambiguous
47 catch(C *p) { caught = 1; if (p != d) abort();}
48 catch(...) { abort();
    [all...]
catch4.cpp 6 // We cannot catch an ambiguous base class. Check with a virtual public
33 catch(A *p) { caught = 1; if (p != d) abort();}
34 catch(...) { abort(); }
39 catch(B *p) { caught = 1; if (p != d) abort();}
40 catch(...) { abort(); }
45 catch(C *p) { caught = 1; if (p != d) abort();}
46 catch(...) { abort(); }
52 catch(B *p) { abort(); } // throw type is static type
53 catch(A *p) { caught = 1; if (p != d) abort();}
54 catch(...) { abort();
    [all...]
catch4p.cpp 6 // We cannot catch an ambiguous base class. Check with a virtual
33 catch(A *p) { caught = 1; if (p != d) abort();}
34 catch(...) { abort(); }
39 catch(B *p) { caught = 1; if (p != d) abort();}
40 catch(...) { abort(); }
45 catch(C *p) { caught = 1; if (p != d) abort();}
46 catch(...) { abort(); }
52 catch(B *p) { abort(); } // throw type is static type
53 catch(A *p) { caught = 1; if (p != d) abort();}
54 catch(...) { abort();
    [all...]
  /ndk/tests/device/test-stlport_shared-exception/jni/
catch8p.cpp 6 // We cannot catch an ambiguous base class.
32 catch(A *p) { abort(); } // A is ambiguous
33 catch(D *p) { caught = 1; if (p != d) abort();}
34 catch(...) { abort(); }
39 catch(A *p) { abort(); } // A is ambiguous
40 catch(B *p) { caught = 1; if (p != d) abort();}
41 catch(...) { abort(); }
46 catch(A *p) { abort(); } // A is ambiguous
47 catch(C *p) { caught = 1; if (p != d) abort();}
48 catch(...) { abort();
    [all...]
catch4.cpp 6 // We cannot catch an ambiguous base class. Check with a virtual public
33 catch(A *p) { caught = 1; if (p != d) abort();}
34 catch(...) { abort(); }
39 catch(B *p) { caught = 1; if (p != d) abort();}
40 catch(...) { abort(); }
45 catch(C *p) { caught = 1; if (p != d) abort();}
46 catch(...) { abort(); }
52 catch(B *p) { abort(); } // throw type is static type
53 catch(A *p) { caught = 1; if (p != d) abort();}
54 catch(...) { abort();
    [all...]
catch4p.cpp 6 // We cannot catch an ambiguous base class. Check with a virtual
33 catch(A *p) { caught = 1; if (p != d) abort();}
34 catch(...) { abort(); }
39 catch(B *p) { caught = 1; if (p != d) abort();}
40 catch(...) { abort(); }
45 catch(C *p) { caught = 1; if (p != d) abort();}
46 catch(...) { abort(); }
52 catch(B *p) { abort(); } // throw type is static type
53 catch(A *p) { caught = 1; if (p != d) abort();}
54 catch(...) { abort();
    [all...]
eh24.cpp 23 } catch (double i) {
26 } catch (int i) {
30 } catch (int i) {
eh40.cpp 13 } catch (char c) {
16 } catch (...) {
26 } catch (...) {
spec1.cpp 26 catch (char)
30 catch (int)
34 catch (std::bad_exception)
spec2.cpp 26 catch (char)
30 catch (int)
34 catch (std::bad_exception)
  /art/test/003-omnibus-opcodes/src/
UnresTest1.java 12 } catch (NoSuchFieldError nsfe) { method
18 } catch (NoSuchFieldError nsfe) { method
24 } catch (NoSuchFieldError nsfe) { method
31 } catch (NoSuchFieldError nsfe) { method
37 } catch (NoSuchFieldError nsfe) { method
44 } catch (NoSuchFieldError nsfe) { method
50 } catch (NoSuchFieldError nsfe) { method
57 } catch (NoSuchFieldError nsfe) { method
63 } catch (NoSuchFieldError nsfe) { method
70 } catch (NoSuchMethodError nsfe) method
76 } catch (NoSuchMethodError nsfe) { method
    [all...]
  /dalvik/tests/003-omnibus-opcodes/src/
UnresTest1.java 12 } catch (NoSuchFieldError nsfe) { method
18 } catch (NoSuchFieldError nsfe) { method
24 } catch (NoSuchFieldError nsfe) { method
31 } catch (NoSuchFieldError nsfe) { method
37 } catch (NoSuchFieldError nsfe) { method
44 } catch (NoSuchFieldError nsfe) { method
50 } catch (NoSuchFieldError nsfe) { method
57 } catch (NoSuchFieldError nsfe) { method
63 } catch (NoSuchFieldError nsfe) { method
70 } catch (NoSuchMethodError nsfe) method
76 } catch (NoSuchMethodError nsfe) { method
    [all...]
  /external/clang/test/Parser/
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 (...) {
    [all...]
  /external/llvm/test/Transforms/LoopSimplify/
2011-12-14-LandingpadHeader.ll 9 to label %try.cont19 unwind label %catch
11 ; CHECK: catch.preheader:
13 ; CHECK: br label %catch
15 ; CHECK: catch.split-lp:
17 ; CHECK: br label %catch
19 catch: ; preds = %if.else, %entry
21 catch i8* bitcast ({ i8*, i8*, i8* }* @catchtypeinfo to i8*)
25 if.else: ; preds = %catch
27 to label %try.cont19 unwind label %catch
32 eh.resume: ; preds = %catch
    [all...]
  /external/clang/test/SemaCXX/
exceptions.cpp 9 } catch(int i) { // expected-note {{previous definition}}
12 } catch(float i) {
13 } catch(void v) { // expected-error {{cannot catch incomplete type 'void'}}
14 } catch(A a) { // expected-error {{cannot catch incomplete type 'A'}}
15 } catch(A *a) { // expected-error {{cannot catch pointer to incomplete type 'A'}}
16 } catch(A &a) { // expected-error {{cannot catch reference to incomplete type 'A'}
    [all...]
unreachable-catch-clauses.cpp 11 catch (BaseEx &e) { f(); }
12 catch (Ex1 &e) { f(); } // expected-note {{for type class Ex1 &}}
13 catch (Ex2 &e) { f(); } // expected-warning {{exception of type Ex2 & will be caught by earlier handler}}
  /frameworks/base/tests/permission/src/com/android/framework/permission/tests/
ActivityManagerPermissionTests.java 45 } catch (SecurityException e) { method
47 } catch (RemoteException e) { method
55 } catch (SecurityException e) { method
57 } catch (RemoteException e) { method
65 } catch (SecurityException e) { method
67 } catch (RemoteException e) { method
78 } catch (SecurityException e) { method
80 } catch (RemoteException e) { method
91 } catch (SecurityException e) { method
93 } catch (RemoteException e) method
104 } catch (SecurityException e) { method
106 } catch (RemoteException e) { method
117 } catch (SecurityException e) { method
119 } catch (RemoteException e) { method
130 } catch (SecurityException e) { method
132 } catch (RemoteException e) { method
143 } catch (SecurityException e) { method
145 } catch (RemoteException e) { method
156 } catch (SecurityException e) { method
158 } catch (RemoteException e) { method
169 } catch (SecurityException e) { method
171 } catch (RemoteException e) { method
182 } catch (SecurityException e) { method
184 } catch (RemoteException e) { method
192 } catch (SecurityException e) { method
194 } catch (RemoteException e) { method
    [all...]
  /external/stlport/test/unit/
messages_facets_test.cpp 27 catch (runtime_error const& /* e */) {
30 catch (...) {
39 catch (runtime_error const& /* e */) {
42 catch (...) {
51 catch (runtime_error const& e) {
54 catch (...) {
65 catch (runtime_error const&) {
67 catch (...) {
76 catch (runtime_error const&) {
78 catch (...)
    [all...]
  /ndk/tests/device/test-gnustl-full/unit/
messages_facets_test.cpp 27 catch (runtime_error const& /* e */) {
30 catch (...) {
39 catch (runtime_error const& /* e */) {
42 catch (...) {
51 catch (runtime_error const& e) {
54 catch (...) {
65 catch (runtime_error const&) {
67 catch (...) {
76 catch (runtime_error const&) {
78 catch (...)
    [all...]
  /ndk/tests/device/test-stlport/unit/
messages_facets_test.cpp 27 catch (runtime_error const& /* e */) {
30 catch (...) {
39 catch (runtime_error const& /* e */) {
42 catch (...) {
51 catch (runtime_error const& e) {
54 catch (...) {
65 catch (runtime_error const&) {
67 catch (...) {
76 catch (runtime_error const&) {
78 catch (...)
    [all...]
  /libcore/luni/src/test/java/tests/api/org/xml/sax/ext/
DefaultHandler2Test.java 37 } catch (SAXException e) { method
45 } catch (SAXException e) { method
53 } catch (SAXException e) { method
61 } catch (SAXException e) { method
69 } catch (SAXException e) { method
77 } catch (SAXException e) { method
85 } catch (SAXException e) { method
93 } catch (SAXException e) { method
101 } catch (SAXException e) { method
109 } catch (SAXException e) method
117 } catch (SAXException e) { method
125 } catch (SAXException e) { method
127 } catch (IOException e) { method
135 } catch (SAXException e) { method
137 } catch (IOException e) { method
146 } catch (SAXException e) { method
148 } catch (IOException e) { method
    [all...]
  /external/stlport/test/compiler/
eh.cc 23 catch (bad_alloc const&) {
26 catch (...) {
40 catch ( bad_alloc const & ) {
43 catch ( ... ) {
54 catch ( bad_alloc& ) {
56 catch ( ... ) {
  /external/clang/test/Rewriter/
rewrite-try-catch.m 8 @catch (...) { SPLATCH(); @throw; }
18 @catch (Foo* localException) {
23 // no catch clause
  /ndk/sources/cxx-stl/gabi++/tests/
catch_const_pointer_nullptr.cpp 23 catch (A*)
26 catch (const A*)
40 catch (const A*)
43 catch (A*)
56 catch (const A* const)
59 catch (A*)
72 catch (A*)
75 catch (const A* const)
88 catch (A* const)
91 catch (A*
    [all...]

Completed in 1086 milliseconds

1 23 4 5 6 7 8 91011>>