HomeSort by relevance Sort by last modified time
    Searched defs:emptySet (Results 1 - 25 of 238) sorted by null

1 2 3 4 5 6 7 8 910

  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
EmptyImmutableSet.java 28 super(Collections.emptySet());
ImmutableSetMultimap.java 335 private final transient ImmutableSet<V> emptySet;
340 this.emptySet = emptySet(valueComparator);
354 return MoreObjects.firstNonNull(set, emptySet);
459 private static <V> ImmutableSet<V> emptySet(
463 : ImmutableSortedSet.<V>emptySet(valueComparator);
467 return emptySet instanceof ImmutableSortedSet
468 ? ((ImmutableSortedSet<V>) emptySet).comparator()
ImmutableSortedSet.java 61 private static <E> ImmutableSortedSet<E> emptySet() {
65 static <E> ImmutableSortedSet<E> emptySet(
69 return emptySet();
76 return emptySet();
124 return emptySet(comparator);
204 return emptySet(comparator);
231 ? emptySet(delegate.comparator())
317 return emptySet(comparator());
360 return emptySet(comparator());
370 return emptySet(comparator())
    [all...]
  /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 37 private final RegisterSpecSet emptySet;
63 this.emptySet = new RegisterSpecSet(regCount);
68 emptySet.setImmutable();
144 return (result != null) ? result : emptySet;
229 if (blockStarts[label] == emptySet) {
  /dalvik/dx/src/com/android/dx/ssa/
LocalVariableInfo.java 39 private final RegisterSpecSet emptySet;
64 this.emptySet = new RegisterSpecSet(regCount);
69 emptySet.setImmutable();
141 return (result != null) ? result : emptySet;
226 if (blockStarts[index] == emptySet) {
  /tools/loganalysis/src/com/android/loganalysis/item/
DmesgItem.java 37 super(Collections.emptySet());
  /cts/hostsidetests/devicepolicy/app/DeviceOwner/src/com/android/cts/deviceowner/
AffiliationTest.java 100 setAffiliationIds(Collections.emptySet());
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
TesterRequirements.java 47 this(Collections.<Feature<?>>emptySet(),
48 Collections.<Feature<?>>emptySet());
  /external/jacoco/org.jacoco.report.test/src/org/jacoco/report/
MemoryMultiReportOutput.java 61 assertEquals(Collections.emptySet(), files.keySet());
87 assertEquals(Collections.emptySet(), open);
  /packages/apps/TV/src/com/android/tv/util/
MultiLongSparseArray.java 99 private void cacheEmptySet(Set<T> emptySet) {
101 mEmptySets[++mEmptyIndex] = emptySet;
109 Set<T> emptySet = mEmptySets[mEmptyIndex];
111 return emptySet;
  /external/guava/guava-gwt/test-super/com/google/common/collect/super/com/google/common/collect/
ContiguousSetTest.java 266 ContiguousSet<Integer> emptySet = ContiguousSet.create(Range.closedOpen(2, 2), integers());
267 assertEquals(ImmutableSet.of(), set.intersection(emptySet));
268 assertEquals(ImmutableSet.of(), emptySet.intersection(set));
MapConstraintsTest.java 143 assertEquals(Collections.emptySet(), map.entrySet());
144 assertEquals(Collections.emptySet(), constrained.entrySet());
205 assertEquals(Collections.emptySet(), map.entrySet());
206 assertEquals(Collections.emptySet(), constrained.entrySet());
492 entry.setValue(Collections.<Integer>emptySet());
AbstractImmutableSetTest.java 59 assertEquals(Collections.<String>emptySet(), set);
106 assertEquals(Collections.<String>emptySet(), set);
137 assertEquals(Collections.<String>emptySet(), set);
173 assertEquals(Collections.<String>emptySet(), set);
231 assertEquals(Collections.<String>emptySet(), copyOf(c));
  /external/guava/guava-tests/test/com/google/common/collect/
ContiguousSetTest.java 304 ContiguousSet<Integer> emptySet = ContiguousSet.create(Range.closedOpen(2, 2), integers());
305 assertEquals(ImmutableSet.of(), set.intersection(emptySet));
306 assertEquals(ImmutableSet.of(), emptySet.intersection(set));
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/test/com/google/common/collect/testing/features/
FeatureUtilTest.java 53 return Collections.emptySet();
213 Collections.<Feature<?>>emptySet()));
221 Collections.<Feature<?>>emptySet()));
233 Collections.<Feature<?>>emptySet()));
243 Collections.<Feature<?>>emptySet()));
281 Collections.<Feature<?>>emptySet()));
  /external/icu/icu4c/source/test/intltest/
itutil.cpp 563 UnicodeSet emptySet;
564 LocalUNormalizer2Pointer fn2(unorm2_openFiltered(nfc, emptySet.toUSet(), errorCode));
622 UnicodeSet emptySet;
623 UNormalizer2 *p1 = unorm2_openFiltered(nfc, emptySet.toUSet(), errorCode);
624 UNormalizer2 *p2 = unorm2_openFiltered(nfd, emptySet.toUSet(), errorCode);
uobjtest.cpp 341 UnicodeSet emptySet;
342 TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet));
596 UnicodeSet emptySet;
599 typeid(*nf) == typeid(emptySet)
  /frameworks/opt/net/wifi/tests/wifitests/src/com/android/server/wifi/scanner/
KnownBandsChannelHelperTest.java 287 assertEquals(Collections.<Integer>emptySet(),
308 assertEquals(Collections.<Integer>emptySet(),
NoBandChannelHelperTest.java 223 assertEquals(Collections.<Integer>emptySet(),
243 assertEquals(Collections.<Integer>emptySet(),
  /packages/apps/EmergencyInfo/src/com/android/emergency/preferences/
EmergencyContactsPreference.java 212 getPersistedStringSet(Collections.<String>emptySet());
  /external/guava/guava/src/com/google/common/collect/
ImmutableSetMultimap.java 341 private final transient ImmutableSet<V> emptySet;
346 this.emptySet = emptySet(valueComparator);
360 return MoreObjects.firstNonNull(set, emptySet);
465 private static <V> ImmutableSet<V> emptySet(
469 : ImmutableSortedSet.<V>emptySet(valueComparator);
484 return emptySet instanceof ImmutableSortedSet
485 ? ((ImmutableSortedSet<V>) emptySet).comparator()
536 this, emptySet(valueComparator));
ImmutableSortedSet.java 104 private static <E> ImmutableSortedSet<E> emptySet() {
108 static <E> ImmutableSortedSet<E> emptySet(
111 return emptySet();
121 return emptySet();
404 return emptySet(comparator);
425 return emptySet(comparator);
  /external/guava/guava-testlib/src/com/google/common/collect/testing/
DerivedCollectionGenerators.java 355 SortedSet<E> emptySet = delegate.create();
356 this.comparator = emptySet.comparator();

Completed in 1135 milliseconds

1 2 3 4 5 6 7 8 910