HomeSort by relevance Sort by last modified time
    Searched refs:HashSet (Results 1 - 25 of 632) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/JavaScriptGlue/ForwardingHeaders/wtf/
HashSet.h 1 #include <JavaScriptCore/HashSet.h>
  /external/webkit/WebKit/mac/ForwardingHeaders/wtf/
HashSet.h 1 #import <JavaScriptCore/HashSet.h>
  /external/webkit/WebKitTools/DumpRenderTree/ForwardingHeaders/wtf/
HashSet.h 1 #include <JavaScriptCore/HashSet.h>
  /external/webkit/WebCore/ForwardingHeaders/wtf/
HashSet.h 3 #include <JavaScriptCore/HashSet.h>
  /frameworks/base/services/java/com/android/server/am/
PendingThumbnailsRecord.java 21 import java.util.HashSet;
30 HashSet pendingRecords; // HistoryRecord objects we still wait for.
36 pendingRecords = new HashSet();
  /dalvik/libcore/luni/src/main/java/java/util/
LinkedHashSet.java 23 * LinkedHashSet is a variant of HashSet. Its entries are kept in a
29 * Like HashSet, LinkedHashSet is not thread safe, so access by multiple threads
35 public class LinkedHashSet<E> extends HashSet<E> implements Set<E>, Cloneable,
44 super(new LinkedHashMap<E, HashSet<E>>());
55 super(new LinkedHashMap<E, HashSet<E>>(capacity));
68 super(new LinkedHashMap<E, HashSet<E>>(capacity, loadFactor));
79 super(new LinkedHashMap<E, HashSet<E>>(collection.size() < 6 ? 11
88 HashMap<E, HashSet<E>> createBackingMap(int capacity, float loadFactor) {
89 return new LinkedHashMap<E, HashSet<E>>(capacity, loadFactor);
HashSet.java 26 * HashSet is an implementation of a Set. All optional operations (adding and
29 public class HashSet<E> extends AbstractSet<E> implements Set<E>, Cloneable,
34 transient HashMap<E, HashSet<E>> backingMap;
37 * Constructs a new empty instance of {@code HashSet}.
39 public HashSet() {
40 this(new HashMap<E, HashSet<E>>());
44 * Constructs a new instance of {@code HashSet} with the specified capacity.
47 * the initial capacity of this {@code HashSet}.
49 public HashSet(int capacity) {
50 this(new HashMap<E, HashSet<E>>(capacity))
    [all...]
  /external/webkit/WebCore/platform/
MIMETypeRegistry.h 31 #include <wtf/HashSet.h>
70 static HashSet<String>& getSupportedImageMIMETypes();
71 static HashSet<String>& getSupportedImageResourceMIMETypes();
72 static HashSet<String>& getSupportedImageMIMETypesForEncoding();
73 static HashSet<String>& getSupportedNonImageMIMETypes();
74 static HashSet<String>& getSupportedMediaMIMETypes();
  /frameworks/base/core/java/com/google/android/collect/
Sets.java 21 import java.util.HashSet;
33 * Creates an empty {@code HashSet} instance.
41 * @return a newly-created, initially-empty {@code HashSet}
43 public static <K> HashSet<K> newHashSet() {
44 return new HashSet<K>();
48 * Creates a {@code HashSet} instance containing the given elements.
61 * @return a newly-created {@code HashSet} containing those elements (minus
64 public static <E> HashSet<E> newHashSet(E... elements) {
66 HashSet<E> set = new HashSet<E>(capacity)
    [all...]
  /dalvik/dx/src/com/android/dx/dex/code/
CatchBuilder.java 21 import java.util.HashSet;
47 public HashSet<Type> getCatchTypes();
  /external/webkit/WebCore/platform/graphics/win/
WKCACFContextFlusher.h 33 #include <wtf/HashSet.h>
52 typedef HashSet<CACFContextRef> ContextSet;
  /dalvik/libcore/luni/src/test/java/tests/api/java/util/
HashSetTest.java 26 import java.util.HashSet;
38 @TestTargetClass(HashSet.class)
41 HashSet hs;
46 * @tests java.util.HashSet#HashSet()
51 method = "HashSet",
55 // Test for method java.util.HashSet()
56 HashSet hs2 = new HashSet();
57 assertEquals("Created incorrect HashSet", 0, hs2.size())
    [all...]
  /external/webkit/WebCore/platform/android/
PackageNotifier.h 34 #include <wtf/HashSet.h>
46 void addPackageNames(const HashSet<String>& packageNames);
58 HashSet<String> m_packageNames;
  /external/webkit/WebCore/platform/graphics/
WidthIterator.h 25 #include <wtf/HashSet.h>
36 WidthIterator(const Font*, const TextRun&, HashSet<const SimpleFontData*>* fallbackFonts = 0);
54 HashSet<const SimpleFontData*>* m_fallbackFonts;
  /frameworks/base/tools/preload/
Policy.java 18 import java.util.HashSet;
42 private static final Set<String> SERVICES = new HashSet<String>(Arrays.asList(
62 = new HashSet<String>(Arrays.asList(
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
ListSuggestionCursorNoDuplicates.java 21 import java.util.HashSet;
32 private final HashSet<String> mSuggestionKeys;
36 mSuggestionKeys = new HashSet<String>();
  /external/webkit/WebCore/svg/
SVGDocumentExtensions.h 29 #include <wtf/HashSet.h>
61 HashSet<SVGSVGElement*> m_timeContainers; // For SVG 1.2 support this will need to be made more general.
62 HashMap<String, HashSet<SVGStyledElement*>*> m_pendingResources;
73 std::auto_ptr<HashSet<SVGStyledElement*> > removePendingResource(const AtomicString& id);
SVGElementRareData.h 24 #include <wtf/HashSet.h>
57 HashSet<SVGElementInstance*>& elementInstances() { return m_elementInstances; }
58 const HashSet<SVGElementInstance*>& elementInstances() const { return m_elementInstances; }
70 HashSet<SVGElementInstance*> m_elementInstances;
SVGDocumentExtensions.cpp 70 HashSet<SVGSVGElement*>::iterator end = m_timeContainers.end();
71 for (HashSet<SVGSVGElement*>::iterator itr = m_timeContainers.begin(); itr != end; ++itr)
78 HashSet<SVGSVGElement*>::iterator end = m_timeContainers.end();
79 for (HashSet<SVGSVGElement*>::iterator itr = m_timeContainers.begin(); itr != end; ++itr)
85 HashSet<SVGSVGElement*>::iterator end = m_timeContainers.end();
86 for (HashSet<SVGSVGElement*>::iterator itr = m_timeContainers.begin(); itr != end; ++itr)
123 HashSet<SVGStyledElement*>* set = new HashSet<SVGStyledElement*>();
138 std::auto_ptr<HashSet<SVGStyledElement*> > SVGDocumentExtensions::removePendingResource(const AtomicString& id)
142 std::auto_ptr<HashSet<SVGStyledElement*> > set(m_pendingResources.get(id))
    [all...]
  /external/webkit/JavaScriptCore/wtf/
HashSet.h 29 template<typename Value, typename HashFunctions, typename Traits> class HashSet;
31 void deleteAllValues(const HashSet<Value, HashFunctions, Traits>&);
33 void fastDeleteAllValues(const HashSet<Value, HashFunctions, Traits>&);
38 typename TraitsArg = HashTraits<ValueArg> > class HashSet : public FastAllocBase {
54 void swap(HashSet&);
95 friend void deleteAllValues<>(const HashSet&);
96 friend void fastDeleteAllValues<>(const HashSet&);
116 inline void HashSet<T, U, V>::swap(HashSet& other)
122 inline int HashSet<T, U, V>::size() cons
    [all...]
  /dalvik/libcore/support/src/test/java/tests/support/
Support_Locale.java 21 import java.util.HashSet;
40 Set<Locale> localeSet = new HashSet<Locale>(Arrays.asList(availableLocales));
  /external/apache-http/src/org/apache/http/impl/client/
RedirectLocations.java 35 import java.util.HashSet;
47 this.uris = new HashSet<URI>();
  /external/webkit/WebCore/platform/chromium/
MIMETypeRegistryChromium.cpp 110 HashSet<String> supportedMediaMIMETypes;
133 static HashSet<String>& dummyHashSet()
136 static HashSet<String> dummy;
141 HashSet<String>& MIMETypeRegistry::getSupportedImageMIMETypes() { return dummyHashSet(); }
142 HashSet<String>& MIMETypeRegistry::getSupportedImageResourceMIMETypes() { return dummyHashSet(); }
143 HashSet<String>& MIMETypeRegistry::getSupportedImageMIMETypesForEncoding() { return dummyHashSet(); }
144 HashSet<String>& MIMETypeRegistry::getSupportedNonImageMIMETypes() { return dummyHashSet(); }
145 HashSet<String>& MIMETypeRegistry::getSupportedMediaMIMETypes() { return dummyHashSet(); }
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
AppWidgetShared.java 23 import java.util.HashSet;
46 private static HashSet<Integer> sAppWidgetIds = new HashSet<Integer>();
47 private static HashSet<Long> sChangedEventIds = new HashSet<Long>();
105 Set<Long> set = new HashSet<Long>();
  /cts/tools/signature-tools/test/signature/converter/util/
AbstractTestSourceConverter.java 21 import java.util.HashSet;
33 return convert(Visibility.PROTECTED, new HashSet<CompilationUnit>(Arrays.asList(units)));
36 return convert(visibility, new HashSet<CompilationUnit>(Arrays.asList(units)));

Completed in 792 milliseconds

1 2 3 4 5 6 7 8 91011>>