Searched refs:emptySet (Results 1 - 25 of 71) sorted by relevance

123

/external/chromium_org/third_party/skia/src/pdf/
H A DSkPDFFormXObject.cpp24 SkTSet<SkPDFObject*> emptySet; local
26 resourceDict->getReferencedResources(emptySet, &fResources, false);
53 SkTSet<SkPDFObject*> emptySet; local
54 resourceDict->getReferencedResources(emptySet, &fResources, false);
/external/skia/src/pdf/
H A DSkPDFFormXObject.cpp24 SkTSet<SkPDFObject*> emptySet; local
26 resourceDict->getReferencedResources(emptySet, &fResources, false);
53 SkTSet<SkPDFObject*> emptySet; local
54 resourceDict->getReferencedResources(emptySet, &fResources, false);
/external/guava/guava-testlib/src/com/google/common/collect/testing/
H A DIteratorFeature.java54 Collections.emptySet();
H A DTestsForListsInJavaUtil.java66 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...]
H A DTestsForQueuesInJavaUtil.java60 return Collections.emptySet();
63 return Collections.emptySet();
66 return Collections.emptySet();
69 return Collections.emptySet();
72 return Collections.emptySet();
75 return Collections.emptySet();
H A DTestsForSetsInJavaUtil.java71 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...]
H A DTestsForMapsInJavaUtil.java64 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();
/external/dexmaker/src/dx/java/com/android/dx/rop/code/
H A DLocalVariableInfo.java38 private final RegisterSpecSet emptySet; field in class:LocalVariableInfo
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/
H A DLocalVariableInfo.java40 private final RegisterSpecSet emptySet; field in class:LocalVariableInfo
65 this.emptySet = new RegisterSpecSet(regCount);
70 emptySet.setImmutable();
142 return (result != null) ? result : emptySet;
227 if (blockStarts[index] == emptySet) {
/external/guava/guava/src/com/google/common/collect/
H A DEmptyImmutableSortedMultiset.java55 return ImmutableSortedSet.emptySet(comparator());
60 return ImmutableSortedSet.emptySet(reverseComparator());
H A DImmutableSortedSet.java99 private static <E> ImmutableSortedSet<E> emptySet() { method in class:ImmutableSortedSet
103 static <E> ImmutableSortedSet<E> emptySet( method in class:ImmutableSortedSet
106 return emptySet();
116 return emptySet();
405 ? ImmutableSortedSet.<E>emptySet(comparator)
414 ? ImmutableSortedSet.<E>emptySet(comparator)
H A DImmutableSetMultimap.java339 private final transient ImmutableSortedSet<V> emptySet; field in class:ImmutableSetMultimap
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/
H A DTesterRequirements.java47 this(Collections.<Feature<?>>emptySet(),
48 Collections.<Feature<?>>emptySet());
H A DCollectionSize.java73 this.implied = Collections.emptySet();
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedSet.java58 private static <E> ImmutableSortedSet<E> emptySet() { method in class:ImmutableSortedSet
62 static <E> ImmutableSortedSet<E> emptySet( method in class:ImmutableSortedSet
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(comparato
[all...]
H A DImmutableSetMultimap.java334 private final transient ImmutableSortedSet<V> emptySet; field in class:ImmutableSetMultimap
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/
H A DAbstractCollectionTest.java101 assertTrue(c.containsAll(Collections.emptySet()));
105 assertFalse(c.removeAll(Collections.emptySet()));
115 assertTrue(c.retainAll(Collections.emptySet()));
H A DAbstractImmutableSetTest.java63 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));
H A DAbstractMultisetTest.java181 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/smack/src/org/jivesoftware/smack/packet/
H A DDefaultPacketExtension.java103 return Collections.emptySet();
/external/smack/src/org/jivesoftware/smackx/workgroup/agent/
H A DWorkgroupQueue.java37 private Set<QueueUser> users = Collections.emptySet();
/external/guava/guava-testlib/src/com/google/common/testing/
H A DNullPointerTester.java76 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/
H A Duobjtest.cpp339 UnicodeSet emptySet; local
340 TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet));
594 UnicodeSet emptySet; local
597 typeid(*nf) == typeid(emptySet)
/external/icu/icu4c/source/test/intltest/
H A Duobjtest.cpp339 UnicodeSet emptySet; local
340 TESTCLASSID_NONE_CTOR(FilteredNormalizer2, (*noNormalizer2, emptySet));
594 UnicodeSet emptySet; local
597 typeid(*nf) == typeid(emptySet)
/external/guava/guava-tests/test/com/google/common/hash/
H A DHashingTest.java116 Hashing.combineOrdered(Collections.<HashCode>emptySet());
166 Hashing.combineUnordered(Collections.<HashCode>emptySet());

Completed in 1301 milliseconds

123