/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/ |
D | FinallyFilterTest.java | 58 m.visitTryCatchBlock(start1, end1, finallyStart, null); in should_analyze_control_flow() 59 m.visitTryCatchBlock(start2, end2, finallyStart, null); in should_analyze_control_flow() 102 m.visitTryCatchBlock(tryStart, tryEnd, catchStart, in javac_try_catch_finally() 104 m.visitTryCatchBlock(catchStart, catchEnd, finallyStart, null); in javac_try_catch_finally() 105 m.visitTryCatchBlock(tryStart, tryEnd, finallyStart, null); in javac_try_catch_finally() 148 m.visitTryCatchBlock(tryStart, tryEnd, catchStart, in ecj_try_catch_finally() 150 m.visitTryCatchBlock(tryStart, catchEnd, finallyStart, null); in ecj_try_catch_finally() 199 m.visitTryCatchBlock(tryStart, tryEnd, catchStart, in javac_empty_catch() 201 m.visitTryCatchBlock(tryStart, tryEnd, finallyStart, null); in javac_empty_catch() 202 m.visitTryCatchBlock(catchStart, catchEnd, finallyStart, null); in javac_empty_catch() [all …]
|
D | SynchronizedFilterTest.java | 42 m.visitTryCatchBlock(start, end, handler, null); in javac() 43 m.visitTryCatchBlock(handler, handlerEnd, handler, null); in javac() 90 m.visitTryCatchBlock(start, end, catchHandler, "java/lang/Exception"); in javacTryCatchFinally() 91 m.visitTryCatchBlock(start, end, finallyHandler, null); in javacTryCatchFinally() 92 m.visitTryCatchBlock(catchHandler, catchHandlerEnd, finallyHandler, in javacTryCatchFinally() 130 m.visitTryCatchBlock(start, end, handler, null); in ecj() 131 m.visitTryCatchBlock(handler, handlerEnd, handler, null); in ecj()
|
D | TryWithResourcesJavacFilterTest.java | 114 m.visitTryCatchBlock(handler1, handler1, handler1, in javac9() 118 m.visitTryCatchBlock(handler2, handler2, handler2, in javac9() 365 m.visitTryCatchBlock(handler1, handler1, handler1, in javac_7_8() 368 m.visitTryCatchBlock(handler2, handler2, handler2, in javac_7_8() 640 m.visitTryCatchBlock(handler, handler, handler, "java/lang/Throwable"); in javac9_omitted_null_check() 778 m.visitTryCatchBlock(start, handler, handler, "java/lang/Throwable"); in only_exceptional_path()
|
D | TryWithResourcesEcjFilterTest.java | 168 m.visitTryCatchBlock(handler, handler, handler, null); in ecj() 453 m.visitTryCatchBlock(handler, handler, handler, null); in ecj_noFlowOut()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/ |
D | MethodProbesAdapterTest.java | 321 adapter.visitTryCatchBlock(start, end, handler, "java/lang/Exception"); in testVisitTryCatchBlockNoProbe() 326 expectedVisitor.visitTryCatchBlock(start, end, handler, in testVisitTryCatchBlockNoProbe() 342 adapter.visitTryCatchBlock(start, end, handler1, "java/lang/Exception"); in testVisitTryCatchBlockWithProbeBeforeStart() 343 adapter.visitTryCatchBlock(start, end, handler2, "java/lang/Throwable"); in testVisitTryCatchBlockWithProbeBeforeStart() 349 expectedVisitor.visitTryCatchBlock(probe, end, handler1, in testVisitTryCatchBlockWithProbeBeforeStart() 351 expectedVisitor.visitTryCatchBlock(probe, end, handler2, in testVisitTryCatchBlockWithProbeBeforeStart() 369 adapter.visitTryCatchBlock(start, end, handler1, "java/lang/Exception"); in testVisitTryCatchBlockWithProbeBeforeEnd() 370 adapter.visitTryCatchBlock(start, end, handler2, "java/lang/Throwable"); in testVisitTryCatchBlockWithProbeBeforeEnd() 376 expectedVisitor.visitTryCatchBlock(start, probe, handler1, in testVisitTryCatchBlockWithProbeBeforeEnd() 378 expectedVisitor.visitTryCatchBlock(start, probe, handler2, in testVisitTryCatchBlockWithProbeBeforeEnd() [all …]
|
D | LabelFlowAnalyzerTest.java | 119 analyzer.visitTryCatchBlock(new Label(), new Label(), label, in testFlowScenario10()
|
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/ |
D | MethodProbesAdapter.java | 65 public void visitTryCatchBlock(final Label start, final Label end, in visitTryCatchBlock() method in MethodProbesAdapter 67 probesVisitor.visitTryCatchBlock(getTryCatchLabel(start), getTryCatchLabel(end), in visitTryCatchBlock()
|
D | LabelFlowAnalyzer.java | 69 public void visitTryCatchBlock(final Label start, final Label end, in visitTryCatchBlock() method in LabelFlowAnalyzer
|
/external/desugar/java/com/google/devtools/build/android/desugar/ |
D | TryWithResourcesRewriter.java | 274 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { in visitTryCatchBlock() method in TryWithResourcesRewriter.TryWithResourceVisitor 278 super.visitTryCatchBlock(start, end, handler, type); in visitTryCatchBlock()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/ |
D | MethodAnalyzerTest.java | 674 method.visitTryCatchBlock(l1, l2, l3, "java/lang/Exception"); in createTryCatchBlock() 741 method.visitTryCatchBlock(l0, l2, l2, null); in createTryFinally()
|
/external/desugar/java/com/google/devtools/build/android/desugar/scan/ |
D | PrefixReferenceScanner.java | 323 public void visitTryCatchBlock(Label start, Label end, Label handler, String type) { in visitTryCatchBlock() method in PrefixReferenceScanner.PrefixReferenceMethodVisitor
|
/external/robolectric-shadows/sandbox/src/main/java/org/robolectric/internal/bytecode/ |
D | ClassInstrumentor.java | 532 generatorAdapter.visitTryCatchBlock(start, end, handler, type.getInternalName()); in TryCatch()
|