Home
last modified time | relevance | path

Searched full:catch (Results 1 – 25 of 20022) sorted by relevance

12345678910>>...801

/external/llvm/test/Transforms/SimplifyCFG/
Dwineh-unreachable.ll23 to label %exit unwind label %catch.pad
24 catch.pad:
25 %cs1 = catchswitch within none [label %catch.body] unwind label %unreachable.unwind
26 ; CHECK: catch.pad:
27 ; CHECK-NEXT: catchswitch within none [label %catch.body] unwind to caller
28 catch.body:
29 ; CHECK: catch.body:
33 %catch = catchpad within %cs1 []
35 catchret from %catch to label %unreachable
72 to label %exit unwind label %catch.pad
[all …]
Dempty-cleanuppad.ll52 ; } catch (...) {}
55 ; In this case, the outermost cleanup pad can be eliminated and the catch block
65 ; CHECK: cleanupret from %0 unwind label %catch.dispatch
66 ; CHECK: catch.dispatch:
67 ; CHECK: catchswitch within none [label %catch] unwind to caller
68 ; CHECK: catch:
85 cleanupret from %0 unwind label %catch.dispatch
87 catch.dispatch: ; preds = %ehcleanup
88 %cs1 = catchswitch within none [label %catch] unwind label %ehcleanup.1
90 catch: ; preds = %catch.dispatch
[all …]
/external/llvm/test/CodeGen/X86/
Dfunclet-layout.ll15 to label %unreachable unwind label %catch.dispatch
17 catch.dispatch:
18 %cs1 = catchswitch within none [label %catch] unwind to caller
20 catch:
22 br label %catch.loop
24 catch.loop:
25 br i1 %B, label %catchret, label %catch.loop
44 ; The catch funclet contains %catch and %catchret
45 ; CHECK: # %catch{{$}}
55 to label %unreachable unwind label %catch.dispatch
[all …]
/external/cronet/tot/third_party/libc++abi/src/test/
Dincomplete_type.sh.cpp87 } catch (int IncompleteAtThrow::*) { in main()
89 } catch (int CompleteAtThrow::*) { in main()
91 } catch (int NeverDefined::*p) { in main()
94 catch(...) { assert(!"FAIL: Didn't catch NeverDefined::*" ); } in main()
100 } catch (CompleteAtThrow**) { in main()
102 } catch (int CompleteAtThrow::*) { in main()
104 } catch (IncompleteAtThrow**) { in main()
106 } catch (int IncompleteAtThrow::*p) { in main()
109 catch(...) { assert(!"FAIL: Didn't catch IncompleteAtThrow::*" ); } in main()
115 } catch (int IncompleteAtThrow::*) { in main()
[all …]
Dcatch_member_data_pointer_01.pass.cpp40 catch (md2) in test1()
44 catch (md1) in test1()
56 catch (md2) in test2()
59 catch (...) in test2()
69 catch (md1) in test2()
72 catch (...) in test2()
86 catch (md2) in test3()
90 catch (der2) in test3()
94 catch (der1) in test3()
98 catch (md1) in test3()
[all …]
/external/cronet/stable/third_party/libc++abi/src/test/
Dincomplete_type.sh.cpp87 } catch (int IncompleteAtThrow::*) { in main()
89 } catch (int CompleteAtThrow::*) { in main()
91 } catch (int NeverDefined::*p) { in main()
94 catch(...) { assert(!"FAIL: Didn't catch NeverDefined::*" ); } in main()
100 } catch (CompleteAtThrow**) { in main()
102 } catch (int CompleteAtThrow::*) { in main()
104 } catch (IncompleteAtThrow**) { in main()
106 } catch (int IncompleteAtThrow::*p) { in main()
109 catch(...) { assert(!"FAIL: Didn't catch IncompleteAtThrow::*" ); } in main()
115 } catch (int IncompleteAtThrow::*) { in main()
[all …]
Dcatch_member_data_pointer_01.pass.cpp40 catch (md2) in test1()
44 catch (md1) in test1()
56 catch (md2) in test2()
59 catch (...) in test2()
69 catch (md1) in test2()
72 catch (...) in test2()
86 catch (md2) in test3()
90 catch (der2) in test3()
94 catch (der1) in test3()
98 catch (md1) in test3()
[all …]
/external/libcxxabi/test/
Dincomplete_type.sh.cpp91 } catch (int IncompleteAtThrow::*) { in main()
93 } catch (int CompleteAtThrow::*) { in main()
95 } catch (int NeverDefined::*p) { in main()
98 catch(...) { assert(!"FAIL: Didn't catch NeverDefined::*" ); } in main()
104 } catch (CompleteAtThrow**) { in main()
106 } catch (int CompleteAtThrow::*) { in main()
108 } catch (IncompleteAtThrow**) { in main()
110 } catch (int IncompleteAtThrow::*p) { in main()
113 catch(...) { assert(!"FAIL: Didn't catch IncompleteAtThrow::*" ); } in main()
119 } catch (int IncompleteAtThrow::*) { in main()
[all …]
Dcatch_member_data_pointer_01.pass.cpp41 catch (md2) in test1()
45 catch (md1) in test1()
57 catch (md2) in test2()
60 catch (...) in test2()
70 catch (md1) in test2()
73 catch (...) in test2()
87 catch (md2) in test3()
91 catch (der2) in test3()
95 catch (der1) in test3()
99 catch (md1) in test3()
[all …]
Dcatch_ptr_02.pass.cpp36 catch ( const A* ) in test1()
39 catch ( A *) in test1()
52 catch ( A* ) in test2()
55 catch ( const A *) in test2()
68 catch ( const A* ) in test3()
71 catch ( A *) in test3()
84 catch ( A *) in test4()
88 catch ( const A* ) in test4()
104 catch (base2 *p) { in test5()
107 catch (...) in test5()
[all …]
/external/clang/test/SemaCXX/
Dexceptions.cpp11 } catch(int i) { // expected-note {{previous definition}} in trys()
14 } catch(float i) { in trys()
15 } catch(void v) { // expected-error {{cannot catch incomplete type 'void'}} in trys()
16 } catch(A a) { // expected-error {{cannot catch incomplete type 'A'}} in trys()
17 } catch(A *a) { // expected-error {{cannot catch pointer to incomplete type 'A'}} in trys()
18 } catch(A &a) { // expected-error {{cannot catch reference to incomplete type 'A'}} in trys()
19 } catch(Abstract) { // expected-error {{variable type 'Abstract' is an abstract class}} in trys()
20 } catch(...) { in trys()
25 } catch(...) { // expected-error {{catch-all handler must come last}} in trys()
26 } catch(int) { in trys()
[all …]
/external/sdv/vsomeip/third_party/boost/phoenix/include/boost/phoenix/statement/detail/preprocessed/
Dtry_catch_eval_40.hpp30catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
47 catch(...) in operator ()()
78catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
94catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
95 catch(...) in operator ()()
126catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
142catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
143 catch(...) in operator ()()
174catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
190catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
[all …]
Dtry_catch_eval_50.hpp30catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
47 catch(...) in operator ()()
78catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
94catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
95 catch(...) in operator ()()
126catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
142catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
143 catch(...) in operator ()()
174catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
190catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
[all …]
Dtry_catch_eval_30.hpp30catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
47 catch(...) in operator ()()
78catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
94catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
95 catch(...) in operator ()()
126catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
142catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
143 catch(...) in operator ()()
174catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
190catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
[all …]
Dtry_catch_eval_20.hpp30catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
47 catch(...) in operator ()()
78catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
94catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
95 catch(...) in operator ()()
126catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
142catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
143 catch(...) in operator ()()
174catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
190catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
[all …]
Dtry_catch_eval_10.hpp30catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
47 catch(...) in operator ()()
78catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
94catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
95 catch(...) in operator ()()
126catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
142catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
143 catch(...) in operator ()()
174catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
190catch( typename proto::result_of::value< typename proto::result_of::child_c< A0 , 0 >::type >::typ… in operator ()()
[all …]
/external/jimfs/jimfs/src/test/java/com/google/common/jimfs/
DJimfsFileSystemCloseTest.java84 } catch (FileSystemNotFoundException expected) { in testIsNotAvailableFromProvider()
102 } catch (IOException expected) { in testOpenStreamsClosed()
109 } catch (IOException expected) { in testOpenStreamsClosed()
134 } catch (ClosedChannelException expected) { in testOpenChannelsClosed()
140 } catch (ClosedChannelException expected) { in testOpenChannelsClosed()
146 } catch (ClosedChannelException expected) { in testOpenChannelsClosed()
162 } catch (ClosedDirectoryStreamException expected) { in testOpenDirectoryStreamsClosed()
180 } catch (ClosedWatchServiceException expected) { in testOpenWatchServicesClosed()
186 } catch (ClosedWatchServiceException expected) { in testOpenWatchServicesClosed()
202 } catch (ClosedWatchServiceException expected) { in testPathMethodsThrow()
[all …]
/external/sdv/vsomeip/third_party/boost/exception/test/
Dunknown_exception_test.cpp73 catch( in main()
81 catch( in main()
89 catch( in main()
98 catch( in main()
107 catch( in main()
115 catch( in main()
125 catch( in main()
133 catch( in main()
137 catch( in main()
142 catch( in main()
[all …]
Dcloning_test.cpp103 catch( in test_std_exception()
115 catch( in test_std_exception()
127 catch( in test_std_exception()
131 catch( in test_std_exception()
137 catch( in test_std_exception()
147 catch( in test_std_exception()
157 catch( in test_std_exception()
161 catch( in test_std_exception()
177 catch( in test_std_exception_what()
189 catch( in test_std_exception_what()
[all …]
/external/sdv/vsomeip/third_party/boost/asio/test/
Duse_future.cpp38 catch (...) in use_future_0_test()
48 catch (...) in use_future_0_test()
59 catch (boost::system::system_error& e) in use_future_0_test()
63 catch (...) in use_future_0_test()
73 catch (...) in use_future_0_test()
84 catch (std::exception& e) in use_future_0_test()
88 catch (...) in use_future_0_test()
107 catch (...) in use_future_1_test()
118 catch (...) in use_future_1_test()
130 catch (boost::system::system_error& e) in use_future_1_test()
[all …]
/external/sdv/vsomeip/third_party/boost/algorithm/test/
Dhex_test4.cpp28 catch ( const std::exception &ex ) { return; } in test_short_input1()
29 BOOST_TEST_MESSAGE ( "Failed to catch std::exception in test_short_input1" ); in test_short_input1()
37 catch ( const ba::hex_decode_error &ex ) { return; } in test_short_input2()
38 BOOST_TEST_MESSAGE ( "Failed to catch ba::hex_decode_error in test_short_input2" ); in test_short_input2()
46 catch ( const ba::not_enough_input &ex ) { return; } in test_short_input3()
47 BOOST_TEST_MESSAGE ( "Failed to catch ba::not_enough_input in test_short_input3" ); in test_short_input3()
56 catch ( const ba::non_hex_input &ex ) { BOOST_CHECK ( false ); } in test_short_input4()
57 catch ( const ba::not_enough_input &ex ) { return; } in test_short_input4()
58 catch ( ... ) { BOOST_CHECK ( false ); } in test_short_input4()
67 catch ( const ba::non_hex_input &ex ) { BOOST_CHECK ( false ); } in test_short_input5()
[all …]
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timescale/
DTimeScaleAPITest.java46 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal()
53 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal()
61 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal()
72 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble()
79 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble()
87 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble()
98 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong()
105 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong()
113 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong()
126 } catch (IllegalArgumentException iae) { in TestFromLong()
[all …]
/external/icu/icu4j/main/core/src/test/java/com/ibm/icu/dev/test/timescale/
DTimeScaleAPITest.java43 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal()
50 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal()
58 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal()
69 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble()
76 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble()
84 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble()
95 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong()
102 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong()
110 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong()
123 } catch (IllegalArgumentException iae) { in TestFromLong()
[all …]
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
DMapInterfaceTest.java145 } catch (UnsupportedOperationException e) { in makeEitherMap()
157 } catch (Exception e) { in supportsValuesHashCode()
275 } catch (UnsupportedOperationException e) { in testClear()
286 } catch (UnsupportedOperationException expected) { in testClear()
299 } catch (UnsupportedOperationException e) { in testContainsKey()
305 } catch (ClassCastException tolerated) { in testContainsKey()
313 } catch (NullPointerException optional) { in testContainsKey()
325 } catch (UnsupportedOperationException e) { in testContainsValue()
335 } catch (NullPointerException optional) { in testContainsValue()
346 } catch (UnsupportedOperationException e) { in testEntrySet()
[all …]
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DMapInterfaceTest.java145 } catch (UnsupportedOperationException e) { in makeEitherMap()
157 } catch (Exception e) { in supportsValuesHashCode()
275 } catch (UnsupportedOperationException e) { in testClear()
286 } catch (UnsupportedOperationException expected) { in testClear()
299 } catch (UnsupportedOperationException e) { in testContainsKey()
305 } catch (ClassCastException tolerated) { in testContainsKey()
313 } catch (NullPointerException optional) { in testContainsKey()
325 } catch (UnsupportedOperationException e) { in testContainsValue()
335 } catch (NullPointerException optional) { in testContainsValue()
346 } catch (UnsupportedOperationException e) { in testEntrySet()
[all …]

12345678910>>...801