HomeSort by relevance Sort by last modified time
    Searched full:emptyset (Results 26 - 50 of 151) sorted by null

12 3 4 5 6 7

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
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-tests/test/com/google/common/collect/
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());
ForwardingTestCase.java 113 return Collections.emptySet();
SetsTest.java 27 import static java.util.Collections.emptySet;
334 newEnumSet(Collections.<SomeEnum>emptySet(), SomeEnum.class);
507 Set<SomeEnum> noUnits = Collections.emptySet();
525 Set<SomeEnum> set = Collections.emptySet();
590 Set<Integer> mt = emptySet();
596 Set<Integer> mt = emptySet();
602 Set<Integer> mt = emptySet();
680 Set<Integer> mt = emptySet();
    [all...]
MapConstraintsTest.java 145 assertEquals(Collections.emptySet(), map.entrySet());
146 assertEquals(Collections.emptySet(), constrained.entrySet());
207 assertEquals(Collections.emptySet(), map.entrySet());
208 assertEquals(Collections.emptySet(), constrained.entrySet());
494 entry.setValue(Collections.<Integer>emptySet());
ContiguousSetTest.java 266 ContiguousSet<Integer> emptySet = Ranges.closedOpen(2,2).asSet(integers());
267 assertEquals(ImmutableSet.of(), set.intersection(emptySet));
268 assertEquals(ImmutableSet.of(), emptySet.intersection(set));
  /external/guava/guava-testlib/src/com/google/common/testing/
NullPointerTester.java 76 setDefault(Collection.class, Collections.emptySet());
81 setDefault(Iterable.class, Collections.emptySet());
89 setDefault(Set.class, Collections.emptySet());
  /cts/libs/vogar-expect/src/vogar/
Expectation.java 46 Collections.<String>emptySet(), "", -1);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
CollectionFeature.java 112 * {@link java.util.Collections#emptySet}
CollectionSize.java 73 this.implied = Collections.emptySet();
  /external/smack/src/org/jivesoftware/smack/packet/
DefaultPacketExtension.java 103 return Collections.emptySet();
  /frameworks/base/core/java/com/google/android/collect/
Sets.java 41 * use {@link Collections#emptySet} instead.
  /cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java 104 private static final Set<IField> EMPTY_FIELDS = Collections.emptySet();
106 .emptySet();
108 Collections.emptySet();
112 Collections.emptySet();
114 .emptySet();
370 Set<SigMethod> methods = Collections.emptySet();
    [all...]
  /external/guava/guava/src/com/google/common/collect/
ImmutableSortedSet.java 99 private static <E> ImmutableSortedSet<E> emptySet() {
103 static <E> ImmutableSortedSet<E> emptySet(
106 return emptySet();
116 return emptySet();
405 ? ImmutableSortedSet.<E>emptySet(comparator)
414 ? ImmutableSortedSet.<E>emptySet(comparator)
SortedIterables.java 103 return Collections.emptySet();
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
EnumSetTest.java 332 Set emptySet = EnumSet.noneOf(EmptyEnum.class);
335 emptySet.add(elements[i]);
337 boolean result = set.addAll(emptySet);
757 EnumSet<EmptyEnum> emptySet = EnumSet.noneOf(EmptyEnum.class);
760 emptySet.add((EmptyEnum)elements[i]);
762 boolean result = set.containsAll(emptySet);
781 emptySet = EnumSet.noneOf(EmptyEnum.class);
782 result = set.containsAll(emptySet);
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
EnumSetTest.java 332 Set emptySet = EnumSet.noneOf(EmptyEnum.class);
335 emptySet.add(elements[i]);
337 boolean result = set.addAll(emptySet);
757 EnumSet<EmptyEnum> emptySet = EnumSet.noneOf(EmptyEnum.class);
760 emptySet.add((EmptyEnum)elements[i]);
762 boolean result = set.containsAll(emptySet);
781 emptySet = EnumSet.noneOf(EmptyEnum.class);
782 result = set.containsAll(emptySet);
    [all...]
  /external/jmdns/src/javax/jmdns/impl/
DNSCache.java 103 return Collections.emptySet();
111 return Collections.emptySet();
119 return Collections.emptySet();
  /packages/apps/UnifiedEmail/src/com/android/mail/preferences/
MailPrefs.java 320 final Set<String> defaultPatternSet = Collections.emptySet();
369 final Set<String> defaultAddressSet = Collections.emptySet();
376 final Set<String> defaultPatternSet = Collections.emptySet();
  /external/chromium_org/third_party/icu/source/test/intltest/
itutil.cpp 338 UnicodeSet emptySet;
339 LocalUNormalizer2Pointer fn2(unorm2_openFiltered(nfc, emptySet.toUSet(), errorCode));
uobjtest.cpp 329 UnicodeSet emptySet;
330 TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet));
574 UnicodeSet emptySet;
577 typeid(*nf) == typeid(emptySet)
  /cts/tools/signature-tools/src/signature/compare/
Main.java 162 return Collections.emptySet();
  /external/icu4c/test/intltest/
uobjtest.cpp 339 UnicodeSet emptySet;
340 TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet));
594 UnicodeSet emptySet;
597 typeid(*nf) == typeid(emptySet)
  /external/llvm/unittests/ADT/
SparseSetTest.cpp 20 TEST(SparseSetTest, EmptySet) {

Completed in 663 milliseconds

12 3 4 5 6 7