| /external/v8/test/webkit/ |
| D | exception-propagate-from-dfg-to-llint.js | 34 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 35 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 36 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 37 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 38 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 39 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 40 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 41 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 42 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} 43 try { shouldThrow = !shouldThrow; h(o); } catch (e) {} [all …]
|
| /external/llvm/test/CodeGen/X86/ |
| D | funclet-layout.ll | 15 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 …]
|
| D | tail-merge-wineh.ll | 8 ; } catch (int) { 12 ; } catch (int) { 14 ; } catch (int) { 54 to label %unreachable unwind label %catch.dispatch 56 catch.dispatch: ; preds = %entry 57 %cs1 = catchswitch within none [label %catch] unwind label %catch.dispatch.7 59 catch: ; preds = %catch.dispatch 63 catchret.dest: ; preds = %catch 70 to label %unreachable unwind label %catch.dispatch.2 72 catch.dispatch.2: ; preds = %try.cont [all …]
|
| D | branchfolding-catchpads.ll | 15 to label %cleanup unwind label %catch.dispatch 19 to label %cleanup unwind label %catch.dispatch 21 catch.dispatch: 22 %cs = catchswitch within none [ label %catch, label %catch.2 ] unwind to caller 24 catch: 29 catch.2: 57 to label %cleanup unwind label %catch.dispatch 61 to label %cleanup unwind label %catch.dispatch 63 catch.dispatch: 64 %cs = catchswitch within none [ label %catch, label %catch.2, label %catch.3 ] unwind to caller [all …]
|
| D | catchpad-weight.ll | 31 to label %try.cont unwind label %catch.dispatch 33 catch.dispatch: ; preds = %entry 34 %cs1 = catchswitch within none [label %catch.5] unwind label %catch.dispatch.1 36 catch.5: ; preds = %catch.dispatch 40 try.cont: ; preds = %entry, %catch, %catch.3, %catch.5 45 catch.dispatch.1: ; preds = %catch.dispatch 46 %cs2 = catchswitch within none [label %catch.3] unwind label %catch.dispatch.2 48 catch.3: ; preds = %catch.dispatch.1 52 catch.dispatch.2: ; preds = %catch.dispatch.1 53 %cs3 = catchswitch within none [label %catch] unwind label %ehcleanup [all …]
|
| /external/v8/test/mjsunit/regress/ |
| D | regress-1200351.js | 41 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 45 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 49 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 53 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 57 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 61 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 65 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 69 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 73 } catch (e) { if (e.message.length > 0) { print (e.message); } }; 77 } catch (e) { if (e.message.length > 0) { print (e.message); } }; [all …]
|
| /external/clang/test/SemaCXX/ |
| D | exceptions.cpp | 9 } catch(int i) { // expected-note {{previous definition}} in trys() 12 } catch(float i) { in trys() 13 } catch(void v) { // expected-error {{cannot catch incomplete type 'void'}} in trys() 14 } catch(A a) { // expected-error {{cannot catch incomplete type 'A'}} in trys() 15 } catch(A *a) { // expected-error {{cannot catch pointer to incomplete type 'A'}} in trys() 16 } catch(A &a) { // expected-error {{cannot catch reference to incomplete type 'A'}} in trys() 17 } catch(Abstract) { // expected-error {{variable type 'Abstract' is an abstract class}} in trys() 18 } catch(...) { in trys() 23 } catch(...) { // expected-error {{catch-all handler must come last}} in trys() 24 } catch(int) { in trys() [all …]
|
| /external/llvm/test/Transforms/SimplifyCFG/ |
| D | empty-cleanuppad.ll | 52 ; } 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 …]
|
| D | wineh-unreachable.ll | 23 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 …]
|
| /external/guava/guava-testlib/src/com/google/common/collect/testing/ |
| D | MapInterfaceTest.java | 150 } catch (UnsupportedOperationException e) { in makeEitherMap() 162 } catch (Exception e) { in supportsValuesHashCode() 278 } catch (UnsupportedOperationException e) { in testClear() 289 } catch (UnsupportedOperationException e) { in testClear() 302 } catch (UnsupportedOperationException e) { in testContainsKey() 308 } catch (ClassCastException tolerated) {} in testContainsKey() 315 } catch (NullPointerException optional) { in testContainsKey() 327 } catch (UnsupportedOperationException e) { in testContainsValue() 337 } catch (NullPointerException optional) { in testContainsValue() 348 } catch (UnsupportedOperationException e) { in testEntrySet() [all …]
|
| /external/libcxxabi/test/ |
| D | catch_member_data_pointer_01.pass.cpp | 37 catch (md2) in test1() 41 catch (md1) in test1() 53 catch (md2) in test2() 56 catch (...) in test2() 66 catch (md1) in test2() 69 catch (...) in test2() 83 catch (md2) in test3() 87 catch (der2) in test3() 91 catch (der1) in test3() 95 catch (md1) in test3() [all …]
|
| D | catch_ptr_02.pass.cpp | 23 catch ( const A* ) in test1() 26 catch ( A *) in test1() 39 catch ( A* ) in test2() 42 catch ( const A *) in test2() 55 catch ( const A* ) in test3() 58 catch ( A *) in test3() 71 catch ( A *) in test4() 75 catch ( const A* ) in test4() 91 catch (base2 *p) { in test5() 94 catch (...) in test5() [all …]
|
| D | catch_member_function_pointer_01.pass.cpp | 42 catch (mf2) in test1() 46 catch (mf1) in test1() 58 catch (mf1) in test2() 62 catch (mf2) in test2() 76 catch (dmf2) in test_derived() 80 catch (dmf1) in test_derived() 84 catch (mf1) in test_derived() 93 catch (dmf1) in test_derived() 97 catch (dmf2) in test_derived() 101 catch (mf2) in test_derived() [all …]
|
| /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/ |
| D | KeyStore_Impl2Test.java | 112 } catch (KeyStoreException e) { in checkResult() 117 } catch (NullPointerException e) { in checkResult() 124 } catch (KeyStoreException e) { in checkResult() 129 } catch (KeyStoreException e) { in checkResult() 134 } catch (KeyStoreException e) { in checkResult() 139 } catch (IOException e) { in checkResult() 144 } catch (IOException e) { in checkResult() 145 } catch (NullPointerException e) { in checkResult() 151 } catch (IOException e) { in checkResult() 159 } catch (UnsupportedOperationException e) { in checkResult() [all …]
|
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timescale/ |
| D | TimeScaleAPITest.java | 35 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 42 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 50 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 60 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 67 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 75 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 85 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 92 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 100 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 112 } catch (IllegalArgumentException iae) { in TestFromLong() [all …]
|
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/timescale/ |
| D | TimeScaleAPITest.java | 39 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 46 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 54 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 64 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 71 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 79 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 89 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 96 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 104 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 116 } catch (IllegalArgumentException iae) { in TestFromLong() [all …]
|
| /external/apache-harmony/x-net/src/test/impl/java.injected/org/apache/harmony/xnet/provider/jsse/ |
| D | SSLSocketImplTest.java | 85 } catch (Exception e) { in testSSLSocketImpl1() 97 } catch (Exception e) { in testSSLSocketImpl1() 103 } catch (IOException ex) { in testSSLSocketImpl1() 107 } catch (IOException ex) { in testSSLSocketImpl1() 116 } catch (IOException ex) { in testSSLSocketImpl1() 122 } catch (IOException ex) { in testSSLSocketImpl1() 149 } catch (Exception e) { in testSSLSocketImpl2() 161 } catch (Exception e) { in testSSLSocketImpl2() 167 } catch (IOException ex) { in testSSLSocketImpl2() 171 } catch (IOException ex) { in testSSLSocketImpl2() [all …]
|
| /external/guava/guava-tests/test/com/google/common/base/ |
| D | ThrowablesTest.java | 42 } catch (Throwable t) { in testPropagateIfPossible_NoneDeclared_NoneThrown() 58 } catch (Throwable t) { in testPropagateIfPossible_NoneDeclared_UncheckedThrown() 69 } catch (SomeUncheckedException expected) { in testPropagateIfPossible_NoneDeclared_UncheckedThrown() 78 } catch (Throwable t) { in testPropagateIfPossible_NoneDeclared_UndeclaredThrown() 89 } catch (SomeChainingException expected) { in testPropagateIfPossible_NoneDeclared_UndeclaredThrown() 99 } catch (Throwable t) { in testPropagateIfPossible_OneDeclared_NoneThrown() 118 } catch (Throwable t) { in testPropagateIfPossible_OneDeclared_UncheckedThrown() 129 } catch (SomeUncheckedException expected) { in testPropagateIfPossible_OneDeclared_UncheckedThrown() 138 } catch (Throwable t) { in testPropagateIfPossible_OneDeclared_CheckedThrown() 149 } catch (SomeCheckedException expected) { in testPropagateIfPossible_OneDeclared_CheckedThrown() [all …]
|
| /external/llvm/test/Transforms/Inline/ |
| D | invoke-combine-clauses.ll | 12 ; inlined function caused "catch i8* @exception_outer" to appear 22 catch i8* @exception_inner 38 catch i8* @exception_outer 43 ; CHECK-NEXT: catch i8* @exception_inner 44 ; CHECK-NEXT: catch i8* @exception_outer 45 ; Check that there isn't another "catch" clause: 50 ; inlined function caused "catch i8* @exception_outer" to appear 61 catch i8* @exception_inner 72 catch i8* @exception_outer 77 ; CHECK-NEXT: catch i8* @exception_inner [all …]
|
| /external/smali/smalidea/src/main/antlr/ |
| D | smalideaParser.g | 204 catch [RecognitionException re] { 213 catch [RecognitionException re] { 222 catch [RecognitionException re] { 231 catch [RecognitionException re] { 243 catch [RecognitionException re] { 252 catch [RecognitionException re] { 291 catch [RecognitionException re] { 306 catch [RecognitionException re] { 319 catch [RecognitionException re] { 326 catch [RecognitionException re] { [all …]
|
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
| D | TestUScriptRun.java | 104 } catch (IllegalArgumentException iae) { in TestContstruction() 111 } catch (IllegalArgumentException iae) { in TestContstruction() 118 } catch (IllegalArgumentException iae) { in TestContstruction() 125 } catch (IllegalArgumentException iae) { in TestContstruction() 132 } catch (IllegalArgumentException iae) { in TestContstruction() 139 } catch (IllegalArgumentException iae) { in TestContstruction() 146 } catch (IllegalArgumentException iae) { in TestContstruction() 153 } catch (IllegalArgumentException iae) { in TestContstruction() 160 } catch (IllegalArgumentException iae) { in TestContstruction() 167 }catch (IllegalArgumentException iae) { in TestContstruction() [all …]
|
| /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/ |
| D | TestUScriptRun.java | 108 } catch (IllegalArgumentException iae) { in TestContstruction() 115 } catch (IllegalArgumentException iae) { in TestContstruction() 122 } catch (IllegalArgumentException iae) { in TestContstruction() 129 } catch (IllegalArgumentException iae) { in TestContstruction() 136 } catch (IllegalArgumentException iae) { in TestContstruction() 143 } catch (IllegalArgumentException iae) { in TestContstruction() 150 } catch (IllegalArgumentException iae) { in TestContstruction() 157 } catch (IllegalArgumentException iae) { in TestContstruction() 164 } catch (IllegalArgumentException iae) { in TestContstruction() 171 }catch (IllegalArgumentException iae) { in TestContstruction() [all …]
|
| /external/easymock/src/org/easymock/internal/ |
| D | MocksControl.java | 53 } catch (RuntimeExceptionWrapper e) { in createMock() 64 } catch (RuntimeExceptionWrapper e) { in createMock() 100 } catch (RuntimeExceptionWrapper e) { in replay() 108 } catch (RuntimeExceptionWrapper e) { in verify() 110 } catch (AssertionErrorWrapper e) { in verify() 118 } catch (RuntimeExceptionWrapper e) { in checkOrder() 126 } catch (RuntimeExceptionWrapper e) { in makeThreadSafe() 134 } catch (RuntimeExceptionWrapper e) { in checkIsUsedInOneThread() 145 } catch (RuntimeExceptionWrapper e) { in andReturn() 154 } catch (RuntimeExceptionWrapper e) { in andThrow() [all …]
|
| /external/llvm/test/CodeGen/WinEH/ |
| D | wineh-statenumbering-cleanups.ll | 23 cleanupret from %cleanup unwind label %catch.pad 25 cleanupret from %cleanup unwind label %catch.pad 26 catch.pad: 27 %cs1 = catchswitch within none [label %catch.body] unwind to caller 28 catch.body: 29 ;Cxx: %catch = catchpad within %cs1 [i8* null, i32 u0x40, i8* null] 30 ;SEH: %catch = catchpad within %cs1 [void ()* @dummy_filter] 31 catchret from %catch to label %exit 51 to label %unreachable unwind label %catch.pad 54 catch.pad: [all …]
|
| /external/guava/guava-tests/test/com/google/common/math/ |
| D | MathPreconditionsTest.java | 37 } catch (IllegalArgumentException expected) {} in testCheckPositive_zeroInt() 48 } catch (IllegalArgumentException expected) {} in testCheckPositive_minInt() 59 } catch (IllegalArgumentException expected) {} in testCheckPositive_negativeInt() 66 } catch (IllegalArgumentException expected) {} in testCheckPositive_zeroLong() 77 } catch (IllegalArgumentException expected) {} in testCheckPositive_minLong() 88 } catch (IllegalArgumentException expected) {} in testCheckPositive_negativeLong() 95 } catch (IllegalArgumentException expected) {} in testCheckPositive_zeroBigInteger() 106 } catch (IllegalArgumentException expected) {} in testCheckPositive_negativeBigInteger() 121 } catch (IllegalArgumentException expected) {} in testCheckNonNegative_minInt() 132 } catch (IllegalArgumentException expected) {} in testCheckNonNegative_negativeInt() [all …]
|