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

12

/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
H A DIFilterOutput.java25 * @param fromInclusive
28 * last instruction coming after <code>fromInclusive</code> that
31 void ignore(AbstractInsnNode fromInclusive, AbstractInsnNode toInclusive); argument
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
H A DEnumFilterTest.java27 private AbstractInsnNode fromInclusive; field in class:EnumFilterTest
38 assertEquals(m.instructions.getFirst(), fromInclusive);
50 assertNull(fromInclusive);
62 assertEquals(m.instructions.getFirst(), fromInclusive);
74 assertNull(fromInclusive);
86 assertNull(fromInclusive);
90 public void ignore(final AbstractInsnNode fromInclusive, argument
92 assertNull(this.fromInclusive);
93 this.fromInclusive = fromInclusive;
[all...]
H A DLombokGeneratedFilterTest.java27 private AbstractInsnNode fromInclusive; field in class:LombokGeneratedFilterTest
40 assertNull(fromInclusive);
55 assertNull(fromInclusive);
70 assertEquals(m.instructions.getFirst(), fromInclusive);
74 public void ignore(final AbstractInsnNode fromInclusive, argument
76 assertNull(this.fromInclusive);
77 this.fromInclusive = fromInclusive;
H A DPrivateEmptyNoArgConstructorFilterTest.java26 private AbstractInsnNode fromInclusive; field in class:PrivateEmptyNoArgConstructorFilterTest
41 assertEquals(m.instructions.getFirst(), fromInclusive);
45 public void ignore(final AbstractInsnNode fromInclusive, argument
47 this.fromInclusive = fromInclusive;
H A DSynchronizedFilterTest.java32 private AbstractInsnNode fromInclusive; field in class:SynchronizedFilterTest
67 assertEquals(handler.info, fromInclusive);
120 assertNull(fromInclusive);
155 assertEquals(handler.info, fromInclusive);
159 public void ignore(AbstractInsnNode fromInclusive, argument
161 assertNull(this.fromInclusive);
162 this.fromInclusive = fromInclusive;
H A DSyntheticFilterTest.java27 private AbstractInsnNode fromInclusive; field in class:SyntheticFilterTest
38 assertNull(fromInclusive);
50 assertEquals(m.instructions.getFirst(), fromInclusive);
62 assertNull(fromInclusive);
66 public void ignore(final AbstractInsnNode fromInclusive, argument
68 assertNull(this.fromInclusive);
69 this.fromInclusive = fromInclusive;
H A DTryWithResourcesEcjFilterTest.java184 range0.fromInclusive = m.instructions.getLast();
194 range1.fromInclusive = m.instructions.getLast();
316 assertEquals(range0.fromInclusive, from.get(0));
319 assertEquals(range1.fromInclusive, from.get(1));
467 range0.fromInclusive = m.instructions.getLast();
500 range1.fromInclusive = m.instructions.getLast();
604 assertEquals(range0.fromInclusive, from.get(0));
607 assertEquals(range1.fromInclusive, from.get(1));
612 AbstractInsnNode fromInclusive; field in class:TryWithResourcesEcjFilterTest.Range
H A DTryWithResourcesJavacFilterTest.java141 range0.fromInclusive = m.instructions.getLast();
149 range2.fromInclusive = m.instructions.getLast();
167 range1.fromInclusive = m.instructions.getLast();
189 range3.fromInclusive = m.instructions.getLast();
225 assertEquals(range0.fromInclusive, from.get(0));
228 assertEquals(range1.fromInclusive, from.get(1));
231 assertEquals(range2.fromInclusive, from.get(2));
234 assertEquals(range3.fromInclusive, from.get(3));
392 range0.fromInclusive = m.instructions.getLast();
422 range2.fromInclusive
802 AbstractInsnNode fromInclusive; field in class:TryWithResourcesJavacFilterTest.Range
[all...]
/external/guava/guava/src/com/google/common/collect/
H A DContiguousSet.java109 @Override public ContiguousSet<C> subSet(C fromElement, boolean fromInclusive, C toElement, argument
114 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive);
134 /*@Override*/ abstract ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, 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) {
70 @Override ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { argument
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.java178 boolean fromInclusive,
181 return delegate().subSet(fromElement, fromInclusive, toElement, toInclusive);
192 boolean fromInclusive,
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) {
138 fromElement, BoundType.forBoolean(fromInclusive),
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) {
454 fromElement, BoundType.forBoolean(fromInclusive),
448 subSetImpl( C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DRegularContiguousSet.java54 @Override ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, argument
56 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) {
61 fromElement, BoundType.forBoolean(fromInclusive),
H A DRegularImmutableSortedSet.java231 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) {
232 return tailSetImpl(fromElement, fromInclusive)
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) {
274 fromKey, BoundType.forBoolean(fromInclusive),
433 Cut<C> fromKey, boolean fromInclusive, Cut<C> toKey, boolean toInclusive) {
435 fromKey, BoundType.forBoolean(fromInclusive),
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.java103 /*@Override*/ abstract ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, argument
H A DEmptyContiguousSet.java64 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) {
68 @Override ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { argument
63 subSetImpl( C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) argument
H A DRegularContiguousSet.java52 @Override ContiguousSet<C> subSetImpl(C fromElement, boolean fromInclusive, C toElement, argument
54 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) {
59 fromElement, BoundType.forBoolean(fromInclusive),
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.java353 ImmutableSortedSet<E> subSet(E fromElement, boolean fromInclusive, E toElement, argument
359 if (cmp == 0 && !(fromInclusive && toInclusive)) {
362 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive);
/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 330 milliseconds

12