/external/guava/guava-testlib/src/com/google/common/collect/testing/ |
D | TestsForSetsInJavaUtil.java | 75 return Collections.emptySet(); in suppressForEmptySet() 78 return Collections.emptySet(); in suppressForSingletonSet() 81 return Collections.emptySet(); in suppressForHashSet() 84 return Collections.emptySet(); in suppressForLinkedHashSet() 87 return Collections.emptySet(); in suppressForEnumSet() 90 return Collections.emptySet(); in suppressForTreeSetNatural() 93 return Collections.emptySet(); in suppressForTreeSetWithComparator() 96 return Collections.emptySet(); in suppressForCopyOnWriteArraySet() 99 return Collections.emptySet(); in suppressForUnmodifiableSet() 102 return Collections.emptySet(); in suppressForCheckedSet() [all …]
|
D | TestsForListsInJavaUtil.java | 66 return Collections.emptySet(); in suppressForEmptyList() 69 return Collections.emptySet(); in suppressForSingletonList() 72 return Collections.emptySet(); in suppressForArraysAsList() 75 return Collections.emptySet(); in suppressForArrayList() 78 return Collections.emptySet(); in suppressForLinkedList() 81 return Collections.emptySet(); in suppressForCopyOnWriteArrayList() 84 return Collections.emptySet(); in suppressForUnmodifiableList() 87 return Collections.emptySet(); in suppressForCheckedList() 90 return Collections.emptySet(); in suppressForAbstractList() 93 return Collections.emptySet(); in suppressForAbstractSequentialList()
|
D | TestsForMapsInJavaUtil.java | 70 return Collections.emptySet(); in suppressForEmptyMap() 73 return Collections.emptySet(); in suppressForSingletonMap() 76 return Collections.emptySet(); in suppressForHashMap() 79 return Collections.emptySet(); in suppressForLinkedHashMap() 82 return Collections.emptySet(); in suppressForTreeMapNatural() 85 return Collections.emptySet(); in suppressForTreeMapWithComparator() 88 return Collections.emptySet(); in suppressForEnumMap() 91 return Collections.emptySet(); in suppressForConcurrentHashMap() 94 return Collections.emptySet(); in suppressForConcurrentSkipListMap()
|
D | TestsForQueuesInJavaUtil.java | 60 return Collections.emptySet(); in suppressForLinkedList() 63 return Collections.emptySet(); in suppressForArrayBlockingQueue() 66 return Collections.emptySet(); in suppressForConcurrentLinkedQueue() 69 return Collections.emptySet(); in suppressForLinkedBlockingQueue() 72 return Collections.emptySet(); in suppressForPriorityBlockingQueue() 75 return Collections.emptySet(); in suppressForPriorityQueue()
|
D | IteratorFeature.java | 57 Collections.emptySet();
|
/external/dexmaker/src/dx/java/com/android/dx/rop/code/ |
D | LocalVariableInfo.java | 38 private final RegisterSpecSet emptySet; field in LocalVariableInfo 64 this.emptySet = new RegisterSpecSet(regCount); in LocalVariableInfo() 69 emptySet.setImmutable(); in LocalVariableInfo() 145 return (result != null) ? result : emptySet; in getStarts() 230 if (blockStarts[label] == emptySet) { in debugDump()
|
/external/dexmaker/src/dx/java/com/android/dx/ssa/ |
D | LocalVariableInfo.java | 40 private final RegisterSpecSet emptySet; field in LocalVariableInfo 65 this.emptySet = new RegisterSpecSet(regCount); in LocalVariableInfo() 70 emptySet.setImmutable(); in LocalVariableInfo() 142 return (result != null) ? result : emptySet; in getStarts() 227 if (blockStarts[index] == emptySet) { in debugDump()
|
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/ |
D | ImmutableSortedSet.java | 61 private static <E> ImmutableSortedSet<E> emptySet() { in emptySet() method in ImmutableSortedSet 65 static <E> ImmutableSortedSet<E> emptySet( in emptySet() method in ImmutableSortedSet 69 return emptySet(); in emptySet() 76 return emptySet(); in of() 124 return emptySet(comparator); in ofInternal() 204 return emptySet(comparator); in copyOfInternal() 231 ? emptySet(delegate.comparator()) in unsafeDelegateSortedSet() 317 return emptySet(comparator()); in headSet() 360 return emptySet(comparator()); in subSet() 370 return emptySet(comparator()); in tailSet() [all …]
|
D | ImmutableSetMultimap.java | 335 private final transient ImmutableSet<V> emptySet; field in ImmutableSetMultimap 340 this.emptySet = emptySet(valueComparator); in ImmutableSetMultimap() 354 return MoreObjects.firstNonNull(set, emptySet); in get() 459 private static <V> ImmutableSet<V> emptySet( in emptySet() method in ImmutableSetMultimap 463 : ImmutableSortedSet.<V>emptySet(valueComparator); in emptySet() 467 return emptySet instanceof ImmutableSortedSet in valueComparator() 468 ? ((ImmutableSortedSet<V>) emptySet).comparator() in valueComparator()
|
D | EmptyImmutableSet.java | 28 super(Collections.emptySet()); in EmptyImmutableSet()
|
/external/guava/guava-testlib/test/com/google/common/collect/testing/features/ |
D | FeatureUtilTest.java | 53 return Collections.emptySet(); in getImpliedFeatures() 213 Collections.<Feature<?>>emptySet())); in testBuildTesterRequirements_class() 221 Collections.<Feature<?>>emptySet())); in testBuildTesterRequirements_class() 233 Collections.<Feature<?>>emptySet())); in testBuildTesterRequirements_method() 243 Collections.<Feature<?>>emptySet())); in testBuildTesterRequirements_method() 281 Collections.<Feature<?>>emptySet())); in testBuildDeclaredTesterRequirements()
|
/external/vogar/src/vogar/ |
D | JavaVm.java | 40 return Collections.emptySet(); in installTasks() 67 return Collections.emptySet(); in installActionTasks() 90 return Collections.emptySet(); in cleanupTasks()
|
/external/guava/guava/src/com/google/common/collect/ |
D | ImmutableSetMultimap.java | 341 private final transient ImmutableSet<V> emptySet; field in ImmutableSetMultimap 346 this.emptySet = emptySet(valueComparator); in ImmutableSetMultimap() 360 return MoreObjects.firstNonNull(set, emptySet); in get() 465 private static <V> ImmutableSet<V> emptySet( in emptySet() method in ImmutableSetMultimap 469 : ImmutableSortedSet.<V>emptySet(valueComparator); in emptySet() 484 return emptySet instanceof ImmutableSortedSet in valueComparator() 485 ? ((ImmutableSortedSet<V>) emptySet).comparator() in valueComparator() 536 this, emptySet(valueComparator)); in readObject()
|
D | ImmutableSortedSet.java | 104 private static <E> ImmutableSortedSet<E> emptySet() { in emptySet() method in ImmutableSortedSet 108 static <E> ImmutableSortedSet<E> emptySet( in emptySet() method in ImmutableSortedSet 111 return emptySet(); in emptySet() 121 return emptySet(); in of() 404 return emptySet(comparator); in copyOfSorted() 425 return emptySet(comparator); in construct()
|
D | EmptyImmutableSortedMap.java | 37 this.keySet = ImmutableSortedSet.emptySet(comparator); in EmptyImmutableSortedMap() 43 this.keySet = ImmutableSortedSet.emptySet(comparator); in EmptyImmutableSortedMap()
|
/external/jacoco/org.jacoco.core.test/src/org/jacoco/core/internal/analysis/ |
D | BundleCoverageImplTest.java | 35 Collection<IClassCoverage> classes = Collections.emptySet(); in testProperties() 36 Collection<ISourceFileCoverage> sourcefiles = Collections.emptySet(); in testProperties() 49 Collection<IClassCoverage> classes = Collections.emptySet(); in testCounters() 50 Collection<ISourceFileCoverage> sourcefiles = Collections.emptySet(); in testCounters()
|
/external/dagger2/compiler/src/it/functional-tests/src/main/java/test/staticprovides/ |
D | AllStaticModule.java | 20 import static java.util.Collections.emptySet; 33 return emptySet(); in contibuteEmptyIntegerSet()
|
/external/guava/guava-testlib/src/com/google/common/collect/testing/features/ |
D | TesterRequirements.java | 47 this(Collections.<Feature<?>>emptySet(), in TesterRequirements() 48 Collections.<Feature<?>>emptySet()); in TesterRequirements()
|
/external/jacoco/org.jacoco.report.test/src/org/jacoco/report/ |
D | MemoryMultiReportOutput.java | 61 assertEquals(Collections.emptySet(), files.keySet()); in assertEmpty() 87 assertEquals(Collections.emptySet(), open); in assertAllClosed()
|
/external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/ |
D | AbstractImmutableSetTest.java | 59 assertEquals(Collections.<String>emptySet(), set); in testCreation_noArgs() 106 assertEquals(Collections.<String>emptySet(), set); in testCopyOf_emptyArray() 137 assertEquals(Collections.<String>emptySet(), set); in testCopyOf_collection_empty() 173 assertEquals(Collections.<String>emptySet(), set); in testCopyOf_iterator_empty() 231 assertEquals(Collections.<String>emptySet(), copyOf(c)); in testCopyOf_shortcut_empty()
|
D | SetsTest.java | 26 import static java.util.Collections.emptySet; 128 newEnumSet(Collections.<SomeEnum>emptySet(), SomeEnum.class); in testNewEnumSet_empty() 312 Set<SomeEnum> noUnits = Collections.emptySet(); in testComplementOfEmptySet() 330 Set<SomeEnum> set = Collections.emptySet(); in testComplementOfEmptySetWithoutTypeDoesntWork() 374 Set<Integer> mt = emptySet(); in testCartesianProduct_binary0x0() 380 Set<Integer> mt = emptySet(); in testCartesianProduct_binary0x1() 386 Set<Integer> mt = emptySet(); in testCartesianProduct_binary1x0() 465 Set<Integer> mt = emptySet(); in testCartesianProduct_hashCode()
|
/external/guava/guava-tests/test/com/google/common/collect/ |
D | AbstractImmutableSetTest.java | 63 assertEquals(Collections.<String>emptySet(), set); in testCreation_noArgs() 110 assertEquals(Collections.<String>emptySet(), set); in testCopyOf_emptyArray() 141 assertEquals(Collections.<String>emptySet(), set); in testCopyOf_collection_empty() 177 assertEquals(Collections.<String>emptySet(), set); in testCopyOf_iterator_empty() 235 assertEquals(Collections.<String>emptySet(), copyOf(c)); in testCopyOf_shortcut_empty()
|
/external/icu/icu4c/source/test/intltest/ |
D | uobjtest.cpp | 339 UnicodeSet emptySet; in testIDs() local 340 TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet)); in testIDs() 594 UnicodeSet emptySet; in TestCompilerRTTI() local 597 typeid(*nf) == typeid(emptySet) in TestCompilerRTTI()
|
D | itutil.cpp | 561 UnicodeSet emptySet; in TestLocalXyzPointer() local 562 LocalUNormalizer2Pointer fn2(unorm2_openFiltered(nfc, emptySet.toUSet(), errorCode)); in TestLocalXyzPointer() 620 UnicodeSet emptySet; in TestLocalXyzPointerMoveSwap() local 621 UNormalizer2 *p1 = unorm2_openFiltered(nfc, emptySet.toUSet(), errorCode); in TestLocalXyzPointerMoveSwap() 622 UNormalizer2 *p2 = unorm2_openFiltered(nfd, emptySet.toUSet(), errorCode); in TestLocalXyzPointerMoveSwap()
|
/external/jmdns/src/javax/jmdns/impl/ |
D | DNSCache.java | 103 return Collections.emptySet(); in keySet() 111 return Collections.emptySet(); in values() 119 return Collections.emptySet(); in entrySet()
|