HomeSort by relevance Sort by last modified time
    Searched full:emptyset (Results 1 - 25 of 128) sorted by null

1 2 3 4 5 6

  /external/guava/guava-testlib/src/com/google/common/collect/testing/
TestsForListsInJavaUtil.java 66 return Collections.emptySet();
69 return Collections.emptySet();
72 return Collections.emptySet();
75 return Collections.emptySet();
78 return Collections.emptySet();
81 return Collections.emptySet();
84 return Collections.emptySet();
87 return Collections.emptySet();
90 return Collections.emptySet();
93 return Collections.emptySet();
    [all...]
TestsForSetsInJavaUtil.java 71 return Collections.emptySet();
74 return Collections.emptySet();
77 return Collections.emptySet();
80 return Collections.emptySet();
83 return Collections.emptySet();
86 return Collections.emptySet();
89 return Collections.emptySet();
92 return Collections.emptySet();
95 return Collections.emptySet();
98 return Collections.emptySet();
    [all...]
TestsForQueuesInJavaUtil.java 60 return Collections.emptySet();
63 return Collections.emptySet();
66 return Collections.emptySet();
69 return Collections.emptySet();
72 return Collections.emptySet();
75 return Collections.emptySet();
TestsForMapsInJavaUtil.java 64 return Collections.emptySet();
67 return Collections.emptySet();
70 return Collections.emptySet();
73 return Collections.emptySet();
76 return Collections.emptySet();
79 return Collections.emptySet();
82 return Collections.emptySet();
IteratorFeature.java 54 Collections.emptySet();
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
ImmutableSortedSet.java 58 private static <E> ImmutableSortedSet<E> emptySet() {
62 static <E> ImmutableSortedSet<E> emptySet(
66 return emptySet();
73 return emptySet();
128 return emptySet(comparator);
211 return emptySet(comparator);
238 ? emptySet(delegate.comparator())
301 return emptySet(comparator());
344 return emptySet(comparator());
354 return emptySet(comparator())
    [all...]
ImmutableSet.java 30 * are thin wrapper around {@link java.util.Collections#emptySet()}, {@link
48 this(Collections.<E>emptySet());
ImmutableSetMultimap.java 334 private final transient ImmutableSortedSet<V> emptySet;
339 this.emptySet = (valueComparator == null)
340 ? null : ImmutableSortedSet.<V>emptySet(valueComparator);
356 } else if (emptySet != null) {
357 return emptySet;
  /external/guava/guava/src/com/google/common/collect/
EmptyImmutableSortedMultiset.java 55 return ImmutableSortedSet.emptySet(comparator());
60 return ImmutableSortedSet.emptySet(reverseComparator());
ImmutableSetMultimap.java 339 private final transient ImmutableSortedSet<V> emptySet;
344 this.emptySet = (valueComparator == null)
345 ? null : ImmutableSortedSet.<V>emptySet(valueComparator);
361 } else if (emptySet != null) {
362 return emptySet;
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
TesterRequirements.java 47 this(Collections.<Feature<?>>emptySet(),
48 Collections.<Feature<?>>emptySet());
  /cts/tools/signature-tools/src/signature/model/impl/
SigAnnotatableElement.java 32 annotations = Collections.emptySet();
SigAnnotation.java 34 elements = Collections.emptySet();
SigField.java 37 modifiers = Collections.emptySet();
  /dalvik/dexgen/src/com/android/dexgen/rop/code/
LocalVariableInfo.java 38 private final RegisterSpecSet emptySet;
64 this.emptySet = new RegisterSpecSet(regCount);
69 emptySet.setImmutable();
141 return (result != null) ? result : emptySet;
226 if (blockStarts[label] == emptySet) {
  /dalvik/dx/src/com/android/dx/rop/code/
LocalVariableInfo.java 38 private final RegisterSpecSet emptySet;
64 this.emptySet = new RegisterSpecSet(regCount);
69 emptySet.setImmutable();
145 return (result != null) ? result : emptySet;
230 if (blockStarts[label] == emptySet) {
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableInfo.java 40 private final RegisterSpecSet emptySet;
65 this.emptySet = new RegisterSpecSet(regCount);
70 emptySet.setImmutable();
142 return (result != null) ? result : emptySet;
227 if (blockStarts[index] == emptySet) {
  /external/dexmaker/src/dx/java/com/android/dx/rop/code/
LocalVariableInfo.java 38 private final RegisterSpecSet emptySet;
64 this.emptySet = new RegisterSpecSet(regCount);
69 emptySet.setImmutable();
145 return (result != null) ? result : emptySet;
230 if (blockStarts[label] == emptySet) {
  /external/dexmaker/src/dx/java/com/android/dx/ssa/
LocalVariableInfo.java 40 private final RegisterSpecSet emptySet;
65 this.emptySet = new RegisterSpecSet(regCount);
70 emptySet.setImmutable();
142 return (result != null) ? result : emptySet;
227 if (blockStarts[index] == emptySet) {
  /cts/tools/signature-tools/src/signature/compare/model/subst/
ClassProjection.java 83 interfaces = Collections.emptySet();
107 methods = Collections.emptySet();
  /libcore/luni/src/test/java/libcore/java/util/
CollectionsTest.java 43 testEmptyIterator(Collections.emptySet().iterator());
  /external/guava/guava-tests/test/com/google/common/collect/
AbstractCollectionTest.java 101 assertTrue(c.containsAll(Collections.emptySet()));
105 assertFalse(c.removeAll(Collections.emptySet()));
115 assertTrue(c.retainAll(Collections.emptySet()));
AbstractImmutableSetTest.java 63 assertEquals(Collections.<String>emptySet(), set);
110 assertEquals(Collections.<String>emptySet(), set);
141 assertEquals(Collections.<String>emptySet(), set);
177 assertEquals(Collections.<String>emptySet(), set);
235 assertEquals(Collections.<String>emptySet(), copyOf(c));
AbstractMultisetTest.java 181 assertFalse(ms.addAll(Collections.<String>emptySet()));
316 assertTrue(ms.elementSet().containsAll(Collections.emptySet()));
335 assertFalse(ms.elementSet().removeAll(Collections.emptySet()));
367 assertTrue(ms.elementSet().retainAll(Collections.emptySet()));
478 assertEquals(Collections.emptySet(), ms.entrySet());
  /external/guava/guava-tests/test/com/google/common/hash/
HashingTest.java 116 Hashing.combineOrdered(Collections.<HashCode>emptySet());
166 Hashing.combineUnordered(Collections.<HashCode>emptySet());

Completed in 1013 milliseconds

1 2 3 4 5 6