Home
last modified time | relevance | path

Searched refs:visitTryCatchBlock (Results 1 – 12 of 12) sorted by relevance

/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DFinallyFilterTest.java58 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 …]
DSynchronizedFilterTest.java42 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()
DTryWithResourcesJavacFilterTest.java114 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()
DTryWithResourcesEcjFilterTest.java168 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/
DMethodProbesAdapterTest.java321 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 …]
DLabelFlowAnalyzerTest.java119 analyzer.visitTryCatchBlock(new Label(), new Label(), label, in testFlowScenario10()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
DMethodProbesAdapter.java65 public void visitTryCatchBlock(final Label start, final Label end, in visitTryCatchBlock() method in MethodProbesAdapter
67 probesVisitor.visitTryCatchBlock(getTryCatchLabel(start), getTryCatchLabel(end), in visitTryCatchBlock()
DLabelFlowAnalyzer.java69 public void visitTryCatchBlock(final Label start, final Label end, in visitTryCatchBlock() method in LabelFlowAnalyzer
/external/desugar/java/com/google/devtools/build/android/desugar/
DTryWithResourcesRewriter.java274 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/
DMethodAnalyzerTest.java674 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/
DPrefixReferenceScanner.java323 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/
DClassInstrumentor.java532 generatorAdapter.visitTryCatchBlock(start, end, handler, type.getInternalName()); in TryCatch()