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

1 2 3 4 5 6 7 8 91011>>

  /external/webkit/Source/JavaScriptGlue/ForwardingHeaders/wtf/
HashSet.h 1 #include <JavaScriptCore/HashSet.h>
  /external/webkit/Source/WebKit/mac/ForwardingHeaders/wtf/
HashSet.h 1 #import <JavaScriptCore/HashSet.h>
  /external/webkit/Tools/DumpRenderTree/ForwardingHeaders/wtf/
HashSet.h 1 #include <JavaScriptCore/HashSet.h>
  /external/webkit/Source/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();
  /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...]
  /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...]
  /frameworks/base/services/java/com/android/server/pm/
SharedUserSetting.java 19 import java.util.HashSet;
29 final HashSet<PackageSetting> packages = new HashSet<PackageSetting>();
GrantedPermissions.java 21 import java.util.HashSet;
26 HashSet<String> grantedPermissions = new HashSet<String>();
37 grantedPermissions = (HashSet<String>) base.grantedPermissions.clone();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
CatchBuilder.java 21 import java.util.HashSet;
47 public HashSet<Type> getCatchTypes();
  /dalvik/dx/src/com/android/dx/dex/code/
CatchBuilder.java 21 import java.util.HashSet;
47 public HashSet<Type> getCatchTypes();
  /external/webkit/Source/WebCore/rendering/svg/
SVGResourcesCycleSolver.h 24 #include <wtf/HashSet.h>
46 HashSet<RenderSVGResourceContainer*> m_allResources;
  /libcore/support/src/test/java/tests/support/
Support_Locale.java 21 import java.util.HashSet;
30 Set<Locale> localeSet = new HashSet<Locale>(Arrays.asList(Locale.getAvailableLocales()));
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/util/
HashSetTest.java 21 import java.util.HashSet;
35 HashSet hs;
45 * @tests java.util.HashSet#HashSet()
48 // Test for method java.util.HashSet()
49 HashSet hs2 = new HashSet();
50 assertEquals("Created incorrect HashSet", 0, hs2.size());
54 * @tests java.util.HashSet#HashSet(int
    [all...]
  /libcore/luni/src/test/java/tests/api/java/util/
HashSetTest.java 21 import java.util.HashSet;
35 HashSet hs;
40 * java.util.HashSet#HashSet()
43 // Test for method java.util.HashSet()
44 HashSet hs2 = new HashSet();
45 assertEquals("Created incorrect HashSet", 0, hs2.size());
49 * java.util.HashSet#HashSet(int
    [all...]
  /external/webkit/Source/WebCore/platform/
MIMETypeRegistry.h 30 #include <wtf/HashSet.h>
82 static HashSet<String>& getSupportedImageMIMETypes();
83 static HashSet<String>& getSupportedImageResourceMIMETypes();
84 static HashSet<String>& getSupportedImageMIMETypesForEncoding();
85 static HashSet<String>& getSupportedNonImageMIMETypes();
86 static HashSet<String>& getSupportedMediaMIMETypes();
87 static HashSet<String>& getUnsupportedTextMIMETypes();
  /external/webkit/Source/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 {
55 void swap(HashSet&);
92 friend void deleteAllValues<>(const HashSet&);
93 friend void fastDeleteAllValues<>(const HashSet&);
113 inline void HashSet<T, U, V>::swap(HashSet& other)
119 inline int HashSet<T, U, V>::size() cons
    [all...]
  /external/webkit/Source/WebCore/platform/android/
PackageNotifier.h 34 #include <wtf/HashSet.h>
48 void addPackageNames(const HashSet<String>& packageNames);
60 HashSet<String> m_packageNames;
  /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/Source/WebCore/svg/
SVGElementRareData.h 23 #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;
  /external/apache-http/src/org/apache/http/impl/client/
RedirectLocations.java 35 import java.util.HashSet;
47 this.uris = new HashSet<URI>();
  /external/webkit/Tools/DumpRenderTree/mac/
MockGeolocationProvider.h 30 #import <wtf/HashSet.h>
36 HashSet<WebView *> _registeredViews;
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactoring/changes/
AndroidLayoutFileChanges.java 21 import java.util.HashSet;
32 new HashSet<AndroidLayoutChangeDescription>();

Completed in 2952 milliseconds

1 2 3 4 5 6 7 8 91011>>