Home
last modified time | relevance | path

Searched refs:fromInclusive (Results 1 – 25 of 54) sorted by relevance

123

/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/
DFilterTestBase.java41 public void ignore(final AbstractInsnNode fromInclusive,
44 range.fromInclusive = fromInclusive;
80 AbstractInsnNode fromInclusive; field in FilterTestBase.Range
86 Range(AbstractInsnNode fromInclusive, AbstractInsnNode toInclusive) { in Range() argument
87 this.fromInclusive = fromInclusive; in Range()
95 return this.fromInclusive.equals(other.fromInclusive) in equals()
DKotlinCoroutineFilterTest.java37 range1.fromInclusive = m.instructions.getLast(); in should_filter_suspending_lambdas_generated_by_Kotlin_1_3_30()
69 range2.fromInclusive = m.instructions.getLast(); in should_filter_suspending_lambdas_generated_by_Kotlin_1_3_30()
98 range0.fromInclusive = m.instructions.getLast(); in should_filter_suspending_lambdas_generated_by_Kotlin_1_3_30()
133 range1.fromInclusive = m.instructions.getLast(); in should_filter_suspending_lambdas()
173 range2.fromInclusive = m.instructions.getLast(); in should_filter_suspending_lambdas()
210 range0.fromInclusive = m.instructions.getLast(); in should_filter_suspending_lambdas()
247 range1.fromInclusive = m.instructions.getLast(); in should_filter_suspending_functions()
328 range2.fromInclusive = m.instructions.getLast(); in should_filter_suspending_functions()
361 range0.fromInclusive = m.instructions.getLast(); in should_filter_suspending_functions()
DTryWithResourcesJavacFilterTest.java138 range0.fromInclusive = m.instructions.getLast(); in javac9()
146 range2.fromInclusive = m.instructions.getLast(); in javac9()
164 range1.fromInclusive = m.instructions.getLast(); in javac9()
186 range3.fromInclusive = m.instructions.getLast(); in javac9()
377 range0.fromInclusive = m.instructions.getLast(); in javac_7_8()
407 range2.fromInclusive = m.instructions.getLast(); in javac_7_8()
441 range1.fromInclusive = m.instructions.getLast(); in javac_7_8()
486 range3.fromInclusive = m.instructions.getLast(); in javac_7_8()
626 range0.fromInclusive = m.instructions.getLast(); in javac9_omitted_null_check()
655 range1.fromInclusive = m.instructions.getLast(); in javac9_omitted_null_check()
DTryWithResourcesJavac11FilterTest.java51 range1.fromInclusive = m.instructions.getLast(); in without_null_check()
58 range2.fromInclusive = m.instructions.getLast(); in without_null_check()
103 range1.fromInclusive = m.instructions.getLast(); in with_null_check()
112 range2.fromInclusive = m.instructions.getLast(); in with_null_check()
DKotlinWhenFilterTest.java43 range1.fromInclusive = m.instructions.getLast(); in should_filter_implicit_else()
50 range2.fromInclusive = m.instructions.getLast(); in should_filter_implicit_else()
107 range1.fromInclusive = m.instructions.getLast(); in should_filter_implicit_default()
DTryWithResourcesEcjFilterTest.java181 range0.fromInclusive = m.instructions.getLast(); in ecj()
191 range1.fromInclusive = m.instructions.getLast(); in ecj()
458 range0.fromInclusive = m.instructions.getLast(); in ecj_noFlowOut()
491 range1.fromInclusive = m.instructions.getLast(); in ecj_noFlowOut()
DKotlinNotNullOperatorFilterTest.java43 range.fromInclusive = m.instructions.getLast(); in should_filter()
/external/guava/guava/src/com/google/common/collect/
DForwardingNavigableSet.java182 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
183 return delegate().subSet(fromElement, fromInclusive, toElement, toInclusive); in subSet()
193 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in standardSubSet() argument
194 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive); in standardSubSet()
DContiguousSet.java172 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSet() argument
176 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive); in subSet()
200 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive); in subSetImpl() argument
DDescendingImmutableSortedSet.java58 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument
59 return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet(); in subSetImpl()
DEmptyContiguousSet.java72 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument
77 ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { in tailSetImpl() argument
DRegularContiguousSet.java56 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument
57 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) { in subSetImpl()
63 fromElement, BoundType.forBoolean(fromInclusive), in subSetImpl()
DSortedMultisets.java140 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
144 fromElement, BoundType.forBoolean(fromInclusive), in subSet()
DForwardingNavigableMap.java376 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap() argument
377 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive); in subMap()
/external/guava/android/guava/src/com/google/common/collect/
DForwardingNavigableSet.java182 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
183 return delegate().subSet(fromElement, fromInclusive, toElement, toInclusive); in subSet()
193 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in standardSubSet() argument
194 return tailSet(fromElement, fromInclusive).headSet(toElement, toInclusive); in standardSubSet()
DContiguousSet.java172 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSet() argument
176 return subSetImpl(fromElement, fromInclusive, toElement, toInclusive); in subSet()
200 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive); in subSetImpl() argument
DDescendingImmutableSortedSet.java58 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument
59 return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet(); in subSetImpl()
DEmptyContiguousSet.java72 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument
77 ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { in tailSetImpl() argument
DRegularContiguousSet.java56 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument
57 if (fromElement.compareTo(toElement) == 0 && !fromInclusive && !toInclusive) { in subSetImpl()
63 fromElement, BoundType.forBoolean(fromInclusive), in subSetImpl()
DSortedMultisets.java140 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
144 fromElement, BoundType.forBoolean(fromInclusive), in subSet()
DForwardingNavigableMap.java370 public NavigableMap<K, V> subMap(K fromKey, boolean fromInclusive, K toKey, boolean toInclusive) { in subMap() argument
371 return delegate().subMap(fromKey, fromInclusive, toKey, toInclusive); in subMap()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/
DMethodCoverageCalculator.java156 public void ignore(final AbstractInsnNode fromInclusive, in ignore() argument
158 for (AbstractInsnNode i = fromInclusive; i != toInclusive; i = i in ignore()
/external/jacoco/org.jacoco.core/src/org/jacoco/core/internal/analysis/filter/
DIFilterOutput.java33 void ignore(AbstractInsnNode fromInclusive, AbstractInsnNode toInclusive); in ignore() argument
/external/guava/guava-testlib/src/com/google/common/collect/testing/
DSafeTreeSet.java200 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
203 checkValid(fromElement), fromInclusive, checkValid(toElement), toInclusive)); in subSet()
/external/guava/android/guava-testlib/src/com/google/common/collect/testing/
DSafeTreeSet.java200 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument
203 checkValid(fromElement), fromInclusive, checkValid(toElement), toInclusive)); in subSet()

123