Searched defs:LineImpl (Results 1 - 1 of 1) sorted by relevance

/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
H A DLineImpl.java20 public abstract class LineImpl implements ILine { class in inherits:ILine
28 private static final LineImpl[][][][] SINGLETONS = new LineImpl[SINGLETON_INS_LIMIT + 1][][][];
32 SINGLETONS[i] = new LineImpl[SINGLETON_INS_LIMIT + 1][][];
34 SINGLETONS[i][j] = new LineImpl[SINGLETON_BRA_LIMIT + 1][];
36 SINGLETONS[i][j][k] = new LineImpl[SINGLETON_BRA_LIMIT + 1];
48 public static final LineImpl EMPTY = SINGLETONS[0][0][0][0];
50 private static LineImpl getInstance(final CounterImpl instructions,
66 private static final class Var extends LineImpl {
72 public LineImpl incremen
103 private LineImpl(final CounterImpl instructions, final CounterImpl branches) { method in class:LineImpl
[all...]

Completed in 124 milliseconds