Home
last modified time | relevance | path

Searched refs:getInstructionCounter (Results 1 – 20 of 20) sorted by relevance

/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/
DSourceNodeImplTest.java64 node.getInstructionCounter()); in testIncrementLineUnknown()
78 .getInstructionCounter()); in testIncrementLines()
80 .getInstructionCounter()); in testIncrementLines()
82 .getInstructionCounter()); in testIncrementLines()
175 .getLine(33).getInstructionCounter()); in testIncrementLine()
192 node.getInstructionCounter()); in testIncrementChildNoLines()
211 node.getInstructionCounter()); in testIncrementChildWithLines()
DLineImplTest.java35 assertEquals(CounterImpl.COUNTER_0_0, line.getInstructionCounter()); in testEMPTY()
45 line.getInstructionCounter()); in testIncrement1()
54 line.getInstructionCounter()); in testIncrement2()
63 line.getInstructionCounter()); in testIncrement3()
73 line.getInstructionCounter()); in testIncrement4()
83 line.getInstructionCounter()); in testIncrement5()
DClassCoverageImplTest.java93 assertEquals(CounterImpl.COUNTER_0_0, node.getInstructionCounter()); in testEmptyClass()
102 assertEquals(CounterImpl.COUNTER_1_0, node.getInstructionCounter()); in testAddMethodMissed()
110 assertEquals(CounterImpl.COUNTER_0_1, node.getInstructionCounter()); in testAddMethodCovered()
DPackageCoverageTest.java75 data.getInstructionCounter()); in testCountersWithSources()
98 data.getInstructionCounter()); in testCountersWithoutSources()
DMethodAnalyzerTest.java558 result.getInstructionCounter()); in testTryCatchBlockNotCovered()
574 result.getInstructionCounter()); in testTryCatchBlockFullyCovered()
598 line.getInstructionCounter()); in assertLine()
DMethodCoverageImplTest.java41 assertEquals(CounterImpl.COUNTER_0_0, node.getInstructionCounter()); in testEmptyMethod()
DBundleCoverageImplTest.java77 bundle.getInstructionCounter()); in testCounters()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DSourceNodeImpl.java84 .getInstructionCounter()); in increment()
96 incrementLine(line.getInstructionCounter(), in increment()
127 final int oldTotal = l.getInstructionCounter().getTotalCount(); in incrementLine()
128 final int oldCovered = l.getInstructionCounter().getCoveredCount(); in incrementLine()
DLineImpl.java126 public ICounter getInstructionCounter() { in getInstructionCounter() method in LineImpl
143 return this.instructions.equals(that.getInstructionCounter()) in equals()
DClassAnalyzer.java73 if (methodCoverage.getInstructionCounter().getTotalCount() > 0) { in visitMethod()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/analysis/
DCoverageNodeImpl.java72 .getInstructionCounter()); in increment()
104 public ICounter getInstructionCounter() { in getInstructionCounter() method in CoverageNodeImpl
131 return getInstructionCounter(); in getCounter()
DILine.java25 public ICounter getInstructionCounter(); in getInstructionCounter() method
DICoverageNode.java88 public abstract ICounter getInstructionCounter(); in getInstructionCounter() method
DCoverageBuilder.java102 if (coverage.getInstructionCounter().getTotalCount() > 0) { in visitCoverage()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/analysis/
DCoverageNodeImplTest.java44 assertEquals(CounterImpl.COUNTER_0_0, node.getInstructionCounter()); in testInit()
69 parent.getInstructionCounter()); in testIncrement()
121 copy.getInstructionCounter()); in testGetPlainCopy()
/external/jacoco/org.jacoco.examples/src/org/jacoco/examples/
DClassInfo.java61 .getInstructionCounter().getTotalCount())); in visitCoverage()
DCoreTutorial.java151 printCounter("instructions", cc.getInstructionCounter()); in execute()
/external/jacoco/org.jacoco.cli/src/org/jacoco/cli/internal/commands/
DClassInfo.java60 .valueOf(coverage.getInstructionCounter().getTotalCount())); in print()
/external/jacoco/org.jacoco.report/src/org/jacoco/report/internal/xml/
DXMLCoverageWriter.java142 writeCounter(element, "mi", "ci", line.getInstructionCounter()); in writeLines()
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/test/validation/
DValidationTestBase.java122 final int insnStatus = line.getInstructionCounter().getStatus(); in assertLine()