Home
last modified time | relevance | path

Searched refs:getProbeId (Results 1 – 5 of 5) sorted by relevance

/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/flow/
DMethodProbesAdapterTest.java235 assertEquals(1000, LabelInfo.getProbeId(label)); in testVisitLookupSwitchInsn1()
254 assertEquals(LabelInfo.NO_PROBE, LabelInfo.getProbeId(label)); in testVisitLookupSwitchInsn2()
255 assertEquals(1000, LabelInfo.getProbeId(label2)); in testVisitLookupSwitchInsn2()
283 assertEquals(1000, LabelInfo.getProbeId(label)); in testVisitTableSwitchInsn1()
301 assertEquals(LabelInfo.NO_PROBE, LabelInfo.getProbeId(label)); in testVisitTableSwitchInsn2()
302 assertEquals(1000, LabelInfo.getProbeId(label2)); in testVisitTableSwitchInsn2()
DLabelInfoTest.java42 assertEquals(LabelInfo.NO_PROBE, LabelInfo.getProbeId(label)); in testDefaults()
150 assertEquals(123, LabelInfo.getProbeId(label)); in testSetProbeId()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/instr/
DMethodInstrumenter.java148 if (LabelInfo.getProbeId(label) == LabelInfo.NO_PROBE) { in createIntermediate()
163 final int probeId = LabelInfo.getProbeId(label); in insertIntermediateProbe()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/flow/
DLabelInfo.java213 public static int getProbeId(final Label label) { in getProbeId() method in LabelInfo
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DMethodAnalyzer.java251 final int id = LabelInfo.getProbeId(label); in visitSwitchTarget()