| /external/llvm/test/Transforms/SimplifyCFG/ |
| 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 …]
|
| 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 …]
|
| /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 | 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 | 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 …]
|
| /external/clang/test/SemaCXX/ |
| D | exceptions.cpp | 11 } 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/libcxxabi/test/ |
| D | incomplete_type.sh.cpp | 87 } catch (int IncompleteAtThrow::*) { in main() 89 } catch (int CompleteAtThrow::*) { in main() 91 } catch (int NeverDefined::*p) { in main() 98 } catch (CompleteAtThrow**) { in main() 100 } catch (int CompleteAtThrow::*) { in main() 102 } catch (IncompleteAtThrow**) { in main() 104 } catch (int IncompleteAtThrow::*p) { in main() 112 } catch (int IncompleteAtThrow::*) { in main() 114 } catch (IncompleteAtThrow** p) { in main() 121 } catch (int IncompleteAtThrow::*) { in main() [all …]
|
| D | catch_member_data_pointer_01.pass.cpp | 41 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 …]
|
| D | catch_ptr_02.pass.cpp | 36 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 …]
|
| D | catch_member_function_pointer_01.pass.cpp | 46 catch (mf2) in test1() 50 catch (mf1) in test1() 62 catch (mf1) in test2() 66 catch (mf2) in test2() 80 catch (dmf2) in test_derived() 84 catch (dmf1) in test_derived() 88 catch (mf1) in test_derived() 97 catch (dmf1) in test_derived() 101 catch (dmf2) in test_derived() 105 catch (mf2) in test_derived() [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/icu/android_icu4j/src/main/tests/android/icu/dev/test/timescale/ |
| D | TimeScaleAPITest.java | 41 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 48 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 56 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 67 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 74 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 82 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 93 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 100 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 108 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 121 } catch (IllegalArgumentException iae) { in TestFromLong() [all …]
|
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/timescale/ |
| D | TimeScaleAPITest.java | 40 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 47 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 55 } catch (IllegalArgumentException iae) { in TestBigDecimalFromBigDecimal() 66 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 73 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 81 } catch (IllegalArgumentException iae) { in TestBigDecimalFromDouble() 92 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 99 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 107 } catch (IllegalArgumentException iae) { in TestBigDecimalFromLong() 120 } catch (IllegalArgumentException iae) { in TestFromLong() [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/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/protobuf/java/core/src/test/java/com/google/protobuf/ |
| D | BooleanArrayListTest.java | 89 } catch (ConcurrentModificationException e) { in testModificationWithIteration() 98 } catch (ConcurrentModificationException e) { in testModificationWithIteration() 111 } catch (IndexOutOfBoundsException e) { in testGet() 118 } catch (IndexOutOfBoundsException e) { in testGet() 131 } catch (IndexOutOfBoundsException e) { in testGetInt() 138 } catch (IndexOutOfBoundsException e) { in testGetInt() 174 } catch (IndexOutOfBoundsException e) { in testSet() 181 } catch (IndexOutOfBoundsException e) { in testSet() 199 } catch (IndexOutOfBoundsException e) { in testSetInt() 206 } catch (IndexOutOfBoundsException e) { in testSetInt() [all …]
|
| D | IntArrayListTest.java | 89 } catch (ConcurrentModificationException e) { in testModificationWithIteration() 98 } catch (ConcurrentModificationException e) { in testModificationWithIteration() 111 } catch (IndexOutOfBoundsException e) { in testGet() 118 } catch (IndexOutOfBoundsException e) { in testGet() 131 } catch (IndexOutOfBoundsException e) { in testGetInt() 138 } catch (IndexOutOfBoundsException e) { in testGetInt() 174 } catch (IndexOutOfBoundsException e) { in testSet() 181 } catch (IndexOutOfBoundsException e) { in testSet() 199 } catch (IndexOutOfBoundsException e) { in testSetInt() 206 } catch (IndexOutOfBoundsException e) { in testSetInt() [all …]
|
| D | LongArrayListTest.java | 89 } catch (ConcurrentModificationException e) { in testModificationWithIteration() 98 } catch (ConcurrentModificationException e) { in testModificationWithIteration() 111 } catch (IndexOutOfBoundsException e) { in testGet() 118 } catch (IndexOutOfBoundsException e) { in testGet() 131 } catch (IndexOutOfBoundsException e) { in testGetLong() 138 } catch (IndexOutOfBoundsException e) { in testGetLong() 174 } catch (IndexOutOfBoundsException e) { in testSet() 181 } catch (IndexOutOfBoundsException e) { in testSet() 199 } catch (IndexOutOfBoundsException e) { in testSetLong() 206 } catch (IndexOutOfBoundsException e) { in testSetLong() [all …]
|
| D | FloatArrayListTest.java | 89 } catch (ConcurrentModificationException e) { in testModificationWithIteration() 98 } catch (ConcurrentModificationException e) { in testModificationWithIteration() 111 } catch (IndexOutOfBoundsException e) { in testGet() 118 } catch (IndexOutOfBoundsException e) { in testGet() 131 } catch (IndexOutOfBoundsException e) { in testGetFloat() 138 } catch (IndexOutOfBoundsException e) { in testGetFloat() 174 } catch (IndexOutOfBoundsException e) { in testSet() 181 } catch (IndexOutOfBoundsException e) { in testSet() 199 } catch (IndexOutOfBoundsException e) { in testSetFloat() 206 } catch (IndexOutOfBoundsException e) { in testSetFloat() [all …]
|
| D | DoubleArrayListTest.java | 89 } catch (ConcurrentModificationException e) { in testModificationWithIteration() 98 } catch (ConcurrentModificationException e) { in testModificationWithIteration() 111 } catch (IndexOutOfBoundsException e) { in testGet() 118 } catch (IndexOutOfBoundsException e) { in testGet() 131 } catch (IndexOutOfBoundsException e) { in testGetInt() 138 } catch (IndexOutOfBoundsException e) { in testGetInt() 174 } catch (IndexOutOfBoundsException e) { in testSet() 181 } catch (IndexOutOfBoundsException e) { in testSet() 199 } catch (IndexOutOfBoundsException e) { in testSetInt() 206 } catch (IndexOutOfBoundsException e) { in testSetInt() [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/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/icu/android_icu4j/src/main/tests/android/icu/dev/test/lang/ |
| D | TestUScriptRun.java | 106 } catch (IllegalArgumentException iae) { in TestContstruction() 113 } catch (IllegalArgumentException iae) { in TestContstruction() 120 } catch (IllegalArgumentException iae) { in TestContstruction() 127 } catch (IllegalArgumentException iae) { in TestContstruction() 134 } catch (IllegalArgumentException iae) { in TestContstruction() 141 } catch (IllegalArgumentException iae) { in TestContstruction() 148 } catch (IllegalArgumentException iae) { in TestContstruction() 155 } catch (IllegalArgumentException iae) { in TestContstruction() 162 } catch (IllegalArgumentException iae) { in TestContstruction() 169 }catch (IllegalArgumentException iae) { in TestContstruction() [all …]
|
| /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/lang/ |
| D | TestUScriptRun.java | 105 } catch (IllegalArgumentException iae) { in TestContstruction() 112 } catch (IllegalArgumentException iae) { in TestContstruction() 119 } catch (IllegalArgumentException iae) { in TestContstruction() 126 } catch (IllegalArgumentException iae) { in TestContstruction() 133 } catch (IllegalArgumentException iae) { in TestContstruction() 140 } catch (IllegalArgumentException iae) { in TestContstruction() 147 } catch (IllegalArgumentException iae) { in TestContstruction() 154 } catch (IllegalArgumentException iae) { in TestContstruction() 161 } catch (IllegalArgumentException iae) { in TestContstruction() 168 }catch (IllegalArgumentException iae) { in TestContstruction() [all …]
|
| /external/mockito/src/test/java/org/mockitousage/stubbing/ |
| D | StubbingConsecutiveAnswersTest.java | 69 } catch (NullPointerException expected) { } in should_return_consecutive_value_and_throw_exceptions_set_by_shorten_return_methods() 73 } catch (RuntimeException expected) { } in should_return_consecutive_value_and_throw_exceptions_set_by_shorten_return_methods() 78 } catch (IllegalArgumentException expected) { } in should_return_consecutive_value_and_throw_exceptions_set_by_shorten_return_methods() 90 } catch (RuntimeException expected) { } in should_throw_consecutively() 95 } catch (IllegalArgumentException expected) { } in should_throw_consecutively() 100 } catch (NullPointerException expected) { } in should_throw_consecutively() 105 } catch (NullPointerException expected) { } in should_throw_consecutively() 117 } catch (RuntimeException expected) { } in should_throw_consecutively_set_by_shorten_then_throw_method() 122 } catch (IllegalArgumentException expected) { } in should_throw_consecutively_set_by_shorten_then_throw_method() 127 } catch (NullPointerException expected) { } in should_throw_consecutively_set_by_shorten_then_throw_method() [all …]
|