Searched defs:toInclusive (Results 1 - 25 of 50) sorted by relevance

12

/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
H A DIFilterOutput.java27 * @param toInclusive
31 void ignore(AbstractInsnNode fromInclusive, AbstractInsnNode toInclusive); argument
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
H A DEnumFilterTest.java28 private AbstractInsnNode toInclusive; field in class:EnumFilterTest
39 assertEquals(m.instructions.getLast(), toInclusive);
51 assertNull(toInclusive);
63 assertEquals(m.instructions.getLast(), toInclusive);
75 assertNull(toInclusive);
87 assertNull(toInclusive);
91 final AbstractInsnNode toInclusive) {
94 this.toInclusive = toInclusive;
90 ignore(final AbstractInsnNode fromInclusive, final AbstractInsnNode toInclusive) argument
H A DLombokGeneratedFilterTest.java28 private AbstractInsnNode toInclusive; field in class:LombokGeneratedFilterTest
41 assertNull(toInclusive);
56 assertNull(toInclusive);
71 assertEquals(m.instructions.getLast(), toInclusive);
75 final AbstractInsnNode toInclusive) {
78 this.toInclusive = toInclusive;
74 ignore(final AbstractInsnNode fromInclusive, final AbstractInsnNode toInclusive) argument
H A DPrivateEmptyNoArgConstructorFilterTest.java27 private AbstractInsnNode toInclusive; field in class:PrivateEmptyNoArgConstructorFilterTest
42 assertEquals(m.instructions.getLast(), toInclusive);
46 final AbstractInsnNode toInclusive) {
48 this.toInclusive = toInclusive;
45 ignore(final AbstractInsnNode fromInclusive, final AbstractInsnNode toInclusive) argument
H A DSynchronizedFilterTest.java33 private AbstractInsnNode toInclusive; field in class:SynchronizedFilterTest
68 assertEquals(((LabelNode) exit.info).getPrevious(), toInclusive);
156 assertEquals(((LabelNode) exit.info).getPrevious(), toInclusive);
160 AbstractInsnNode toInclusive) {
163 this.toInclusive = toInclusive;
159 ignore(AbstractInsnNode fromInclusive, AbstractInsnNode toInclusive) argument
H A DSyntheticFilterTest.java28 private AbstractInsnNode toInclusive; field in class:SyntheticFilterTest
39 assertNull(toInclusive);
51 assertEquals(m.instructions.getLast(), toInclusive);
63 assertNull(toInclusive);
67 final AbstractInsnNode toInclusive) {
70 this.toInclusive = toInclusive;
66 ignore(final AbstractInsnNode fromInclusive, final AbstractInsnNode toInclusive) argument
H A DTryWithResourcesEcjFilterTest.java191 range0.toInclusive = m.instructions.getLast();
307 range1.toInclusive = m.instructions.getLast();
317 assertEquals(range0.toInclusive, to.get(0));
320 assertEquals(range1.toInclusive, to.get(1));
490 range0.toInclusive = m.instructions.getLast();
595 range1.toInclusive = m.instructions.getLast();
605 assertEquals(range0.toInclusive, to.get(0));
608 assertEquals(range1.toInclusive, to.get(1));
613 AbstractInsnNode toInclusive; field in class:TryWithResourcesEcjFilterTest.Range
H A DTryWithResourcesJavacFilterTest.java145 range0.toInclusive = m.instructions.getLast();
157 range2.toInclusive = m.instructions.getLast();
185 range1.toInclusive = m.instructions.getLast();
213 range3.toInclusive = m.instructions.getLast();
226 assertEquals(range0.toInclusive, to.get(0));
229 assertEquals(range1.toInclusive, to.get(1));
232 assertEquals(range2.toInclusive, to.get(2));
235 assertEquals(range3.toInclusive, to.get(3));
417 range0.toInclusive = m.instructions.getLast();
447 range2.toInclusive
803 AbstractInsnNode toInclusive; field in class:TryWithResourcesJavacFilterTest.Range
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DContiguousSet.java110 boolean toInclusive) {
114 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive);
135 C toElement, boolean toInclusive);
109 subSet(C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
134 subSetImpl(C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DDescendingImmutableSortedSet.java53 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
54 return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet();
52 subSetImpl( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DEmptyContiguousSet.java66 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
65 subSetImpl( C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DEmptyImmutableSortedSet.java113 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
112 subSetImpl( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DForwardingNavigableSet.java180 boolean toInclusive) {
181 return delegate().subSet(fromElement, fromInclusive, toElement, toInclusive);
194 boolean toInclusive) {
195 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
176 subSet( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
190 standardSubSet( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DSortedMultisets.java136 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
139 toElement, BoundType.forBoolean(toInclusive)));
135 subSet( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DForwardingNavigableMap.java367 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { argument
368 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive);
H A DImmutableRangeSet.java449 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
450 if (!fromInclusive && !toInclusive && Range.compareOrThrow(fromElement, toElement) == 0) {
455 toElement, BoundType.forBoolean(toInclusive)));
448 subSetImpl( C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DRegularContiguousSet.java55 boolean toInclusive) {
56 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) {
62 toElement, BoundType.forBoolean(toInclusive)));
54 subSetImpl(C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DRegularImmutableSortedSet.java231 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
233 .headSetImpl(toElement, toInclusive);
230 subSetImpl( E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
H A DTreeRangeSet.java272 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) {
275 toKey, BoundType.forBoolean(toInclusive)));
433 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) {
436 toKey, BoundType.forBoolean(toInclusive)));
656 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) {
658 fromKey, BoundType.forBoolean(fromInclusive), toKey, BoundType.forBoolean(toInclusive)));
271 subMap( Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) argument
432 subMap( Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) argument
655 subMap( Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) argument
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DContiguousSet.java104 C toElement, boolean toInclusive);
103 subSetImpl(C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DEmptyContiguousSet.java64 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
63 subSetImpl( C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DRegularContiguousSet.java53 boolean toInclusive) {
54 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) {
60 toElement, BoundType.forBoolean(toInclusive)));
52 subSetImpl(C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DImmutableSortedMap.java281 ImmutableSortedMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { argument
285 return tailMap(fromKey, fromInclusive).headMap(toKey, toInclusive);
H A DImmutableSortedSet.java354 boolean toInclusive) {
359 if (cmp == 0 && !(fromInclusive && toInclusive)) {
362 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
353 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument
/external/guava/guava-tests/test/com/google/common/collect/
H A DSynchronizedNavigableSetTest.java114 boolean fromInclusive, E toElement, boolean toInclusive) {
117 fromElement, fromInclusive, toElement, toInclusive);
113 subSet(E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) argument

Completed in 216 milliseconds

12