/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/filter/ |
D | FilterTestBase.java | 41 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()
|
D | KotlinCoroutineFilterTest.java | 37 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()
|
D | TryWithResourcesJavacFilterTest.java | 138 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()
|
D | TryWithResourcesJavac11FilterTest.java | 51 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()
|
D | KotlinWhenFilterTest.java | 43 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()
|
D | TryWithResourcesEcjFilterTest.java | 181 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()
|
D | KotlinNotNullOperatorFilterTest.java | 43 range.fromInclusive = m.instructions.getLast(); in should_filter()
|
/external/guava/guava/src/com/google/common/collect/ |
D | ForwardingNavigableSet.java | 182 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()
|
D | ContiguousSet.java | 172 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
|
D | DescendingImmutableSortedSet.java | 58 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument 59 return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet(); in subSetImpl()
|
D | EmptyContiguousSet.java | 72 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument 77 ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { in tailSetImpl() argument
|
D | RegularContiguousSet.java | 56 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()
|
D | SortedMultisets.java | 140 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument 144 fromElement, BoundType.forBoolean(fromInclusive), in subSet()
|
D | ForwardingNavigableMap.java | 376 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/ |
D | ForwardingNavigableSet.java | 182 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()
|
D | ContiguousSet.java | 172 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
|
D | DescendingImmutableSortedSet.java | 58 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSetImpl() argument 59 return forward.subSet(toElement, toInclusive, fromElement, fromInclusive).descendingSet(); in subSetImpl()
|
D | EmptyContiguousSet.java | 72 C fromElement, boolean fromInclusive, C toElement, boolean toInclusive) { in subSetImpl() argument 77 ContiguousSet<C> tailSetImpl(C fromElement, boolean fromInclusive) { in tailSetImpl() argument
|
D | RegularContiguousSet.java | 56 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()
|
D | SortedMultisets.java | 140 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument 144 fromElement, BoundType.forBoolean(fromInclusive), in subSet()
|
D | ForwardingNavigableMap.java | 370 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/ |
D | MethodCoverageCalculator.java | 156 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/ |
D | IFilterOutput.java | 33 void ignore(AbstractInsnNode fromInclusive, AbstractInsnNode toInclusive); in ignore() argument
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | SafeTreeSet.java | 200 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/ |
D | SafeTreeSet.java | 200 E fromElement, boolean fromInclusive, E toElement, boolean toInclusive) { in subSet() argument 203 checkValid(fromElement), fromInclusive, checkValid(toElement), toInclusive)); in subSet()
|