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

1 2

  /external/chromium_org/third_party/skia/src/pdf/
SkPDFFormXObject.cpp 24 SkTSet<SkPDFObject*> emptySet;
26 resourceDict->getReferencedResources(emptySet, &fResources, false);
53 SkTSet<SkPDFObject*> emptySet;
54 resourceDict->getReferencedResources(emptySet, &fResources, false);
  /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) {
  /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) {
  /external/guava/guava-testlib/src/com/google/common/collect/testing/features/
TesterRequirements.java 47 this(Collections.<Feature<?>>emptySet(),
48 Collections.<Feature<?>>emptySet());
  /external/guava/guava-tests/test/com/google/common/collect/
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));
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());
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));
ImmutableListMultimapTest.java 337 assertEquals(Collections.emptySet(), multimap.keySet());
ImmutableSetMultimapTest.java 342 assertEquals(Collections.emptySet(), multimap.get("foo"));
346 assertEquals(Collections.emptySet(), multimap.keySet());
RangeTest.java 302 Collections.<Integer>emptySet()));
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());
MultimapsTest.java 423 multimapView.replaceValues("foo", Collections.<Integer>emptySet());
466 assertEquals(Collections.emptySet(), multimap.removeAll("dog"));
    [all...]
  /external/chromium_org/third_party/icu/source/test/intltest/
itutil.cpp 365 UnicodeSet emptySet;
366 LocalUNormalizer2Pointer fn2(unorm2_openFiltered(nfc, emptySet.toUSet(), errorCode));
uobjtest.cpp 339 UnicodeSet emptySet;
340 TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet));
594 UnicodeSet emptySet;
597 typeid(*nf) == typeid(emptySet)
  /external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
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;
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...]
  /external/icu/icu4c/source/test/intltest/
itutil.cpp 383 UnicodeSet emptySet;
384 LocalUNormalizer2Pointer fn2(unorm2_openFiltered(nfc, emptySet.toUSet(), errorCode));
uobjtest.cpp 339 UnicodeSet emptySet;
340 TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet));
594 UnicodeSet emptySet;
597 typeid(*nf) == typeid(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;
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)
  /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 404 milliseconds

1 2