HomeSort by relevance Sort by last modified time
    Searched refs:emptySet (Results 26 - 50 of 145) sorted by null

12 3 4 5 6

  /external/smack/src/org/jivesoftware/smackx/workgroup/agent/
WorkgroupQueue.java 37 private Set<QueueUser> users = Collections.emptySet();
  /libcore/luni/src/test/java/libcore/java/util/
CollectionsTest.java 43 testEmptyIterator(Collections.emptySet().iterator());
OldCollectionsTest.java 597 * java.util.Collections.EmptySet#readResolve()
613 Collections.<String>emptySet(), String.class), s, false);
869 Set<String> ss = Collections.emptySet();
870 Set<Integer> si = Collections.emptySet();
  /external/guava/guava/src/com/google/common/collect/
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-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());
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));
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());
  /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());
  /external/chromium_org/third_party/icu/source/test/intltest/
uobjtest.cpp 329 UnicodeSet emptySet;
330 TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet));
574 UnicodeSet emptySet;
577 typeid(*nf) == typeid(emptySet)
itutil.cpp 338 UnicodeSet emptySet;
339 LocalUNormalizer2Pointer fn2(unorm2_openFiltered(nfc, emptySet.toUSet(), errorCode));
  /external/icu/icu4c/source/test/intltest/
uobjtest.cpp 339 UnicodeSet emptySet;
340 TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet));
594 UnicodeSet emptySet;
597 typeid(*nf) == typeid(emptySet)
  /external/guava/guava-tests/test/com/google/common/hash/
HashingTest.java 116 Hashing.combineOrdered(Collections.<HashCode>emptySet());
166 Hashing.combineUnordered(Collections.<HashCode>emptySet());
  /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 358 final Set<String> defaultPatternSet = Collections.emptySet();
407 final Set<String> defaultAddressSet = Collections.emptySet();
414 final Set<String> defaultPatternSet = Collections.emptySet();
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
Settings.java 416 final Set<String> emptySet = Collections.emptySet();
417 return mPrefs.getStringSet(PREF_CORPUS_HANDLES_FOR_PERSONALIZATION, emptySet);
  /cts/tools/signature-tools/src/signature/compare/
Main.java 162 return Collections.emptySet();
  /external/guava/guava/src/com/google/common/base/
Optional.java 285 return Collections.emptySet();
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
MarqueeGesture.java 62 mInitialSelection = Collections.emptySet();
  /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...]
  /libcore/harmony-tests/src/test/java/org/apache/harmony/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...]
  /external/chromium_org/sync/android/java/src/org/chromium/sync/notifier/
InvalidationService.java 295 if (savedTypes == null) return Collections.emptySet();
305 if (objectIds == null) return Collections.emptySet();

Completed in 1142 milliseconds

12 3 4 5 6