HomeSort by relevance Sort by last modified time
    Searched refs:HashSet (Results 101 - 125 of 1003) sorted by null

1 2 3 45 6 7 8 91011>>

  /libcore/support/src/test/java/tests/util/
ClassLoaderBuilder.java 24 import java.util.HashSet;
36 private final Set<String> prefixesToNotInherit = new HashSet<String>();
37 private final Set<String> prefixesToLoad = new HashSet<String>();
65 final Set<String> prefixesToNotInherit = new HashSet<String>(this.prefixesToNotInherit);
66 final Set<String> prefixesToLoad = new HashSet<String>(this.prefixesToLoad);
  /system/media/mca/filterfw/java/android/filterfw/core/
FilterFactory.java 28 import java.util.HashSet;
36 private HashSet<String> mPackages = new HashSet<String>();
39 private static HashSet<String> mLibraries;
44 mLibraries = new HashSet<String>();
  /frameworks/base/services/java/com/android/server/pm/
PackageSettingBase.java 25 import java.util.HashSet;
71 HashSet<String> disabledComponents = new HashSet<String>(0);
73 HashSet<String> enabledComponents = new HashSet<String>(0);
117 disabledComponents = (HashSet<String>) base.disabledComponents.clone();
119 enabledComponents = (HashSet<String>) base.enabledComponents.clone();
  /packages/apps/QuickSearchBox/src/com/android/quicksearchbox/
Config.java 25 import java.util.HashSet;
78 private HashSet<String> mDefaultCorpora;
79 private HashSet<String> mHiddenCorpora;
80 private HashSet<String> mDefaultCorporaSuggestUris;
101 private HashSet<String> loadResourceStringSet(int res) {
102 HashSet<String> defaultCorpora = new HashSet<String>();
  /packages/apps/Settings/src/com/android/settings/inputmethod/
InputMethodAndSubtypeUtil.java 37 import java.util.HashSet;
57 StringBuilder builder, String imi, HashSet<String> subtypes) {
67 StringBuilder builder, HashMap<String, HashSet<String>> imsList) {
80 StringBuilder builder, HashSet<String> imes) {
110 private static HashMap<String, HashSet<String>> getEnabledInputMethodsAndSubtypeList(
114 HashMap<String, HashSet<String>> imsList
115 = new HashMap<String, HashSet<String>>();
128 HashSet<String> subtypeHashes = new HashSet<String>();
140 private static HashSet<String> getDisabledSystemIMEs(ContentResolver resolver)
    [all...]
  /external/bouncycastle/src/main/java/org/bouncycastle/jce/provider/
JCEDigestUtil.java 4 import java.util.HashSet;
25 private static Set md5 = new HashSet();
26 private static Set sha1 = new HashSet();
28 // private static Set sha224 = new HashSet();
30 private static Set sha256 = new HashSet();
31 private static Set sha384 = new HashSet();
32 private static Set sha512 = new HashSet();
  /external/webkit/Source/WebCore/bindings/js/
PageScriptDebugServer.cpp 158 const HashSet<Page*>& pages = pageGroup.pages();
160 HashSet<Page*>::const_iterator end = pages.end();
161 for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it)
201 const HashSet<RefPtr<Widget> >* children = view->children();
204 HashSet<RefPtr<Widget> >::const_iterator end = children->end();
205 for (HashSet<RefPtr<Widget> >::const_iterator it = children->begin(); it != end; ++it) {
  /external/webkit/Source/WebCore/dom/
ScriptExecutionContext.h 35 #include <wtf/HashSet.h>
118 const HashSet<MessagePort*>& messagePorts() const { return m_messagePorts; }
123 const HashSet<DOMURL*>& domUrls() const { return m_domUrls; }
180 HashSet<MessagePort*> m_messagePorts;
190 HashSet<String> m_publicBlobURLs;
191 HashSet<DOMURL*> m_domUrls;
  /external/webkit/Source/WebCore/loader/appcache/
ApplicationCacheGroup.h 40 #include <wtf/HashSet.h>
100 static void postListenerTask(ApplicationCacheHost::EventID id, const HashSet<DocumentLoader*>& set) { postListenerTask(id, 0, 0, set); }
102 static void postListenerTask(ApplicationCacheHost::EventID, int progressTotal, int progressDone, const HashSet<DocumentLoader*>&);
146 HashSet<ApplicationCache*> m_caches;
153 HashSet<DocumentLoader*> m_pendingMasterResourceLoaders;
158 HashSet<DocumentLoader*> m_associatedDocumentLoaders;
  /external/webkit/Source/WebCore/loader/icon/
IconDatabase.h 33 #include <wtf/HashSet.h>
131 HashSet<RefPtr<DocumentLoader> > m_loadersPendingDecision;
163 HashSet<String> m_retainedPageURLs;
172 HashSet<String> m_pageURLsPendingImport;
173 HashSet<String> m_pageURLsInterestedInIcons;
174 HashSet<IconRecord*> m_iconsPendingReading;
  /external/webkit/Source/WebCore/rendering/svg/
SVGResourcesCache.cpp 64 HashSet<RenderSVGResourceContainer*> resourceSet;
67 HashSet<RenderSVGResourceContainer*>::iterator end = resourceSet.end();
68 for (HashSet<RenderSVGResourceContainer*>::iterator it = resourceSet.begin(); it != end; ++it)
80 HashSet<RenderSVGResourceContainer*> resourceSet;
83 HashSet<RenderSVGResourceContainer*>::iterator end = resourceSet.end();
84 for (HashSet<RenderSVGResourceContainer*>::iterator it = resourceSet.begin(); it != end; ++it)
  /external/webkit/Source/WebCore/storage/
DatabaseTracker.h 36 #include <wtf/HashSet.h>
77 void getOpenDatabases(SecurityOrigin* origin, const String& name, HashSet<RefPtr<AbstractDatabase> >* databases);
87 typedef HashSet<AbstractDatabase*> DatabaseSet;
151 HashSet<ProposedDatabase*> m_proposedDatabases;
156 typedef HashSet<String> NameSet;
158 HashSet<RefPtr<SecurityOrigin>, SecurityOriginHash> m_originsBeingDeleted;
StorageEventDispatcher.cpp 69 const HashSet<Page*>& pages = page->group().pages();
70 HashSet<Page*>::const_iterator end = pages.end();
71 for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) {
  /packages/apps/Browser/src/com/android/browser/
SystemAllowGeolocationOrigins.java 31 import java.util.HashSet;
125 private static HashSet<String> parseAllowGeolocationOrigins(String setting) {
126 HashSet<String> origins = new HashSet<String>();
143 HashSet<A> z = new HashSet<A>(x.size());
  /cts/tests/tests/webkit/src/android/webkit/cts/
DateSorterTest.java 28 import java.util.HashSet;
67 HashSet<String> set = new HashSet<String>();
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
TestFilter.java 25 import java.util.HashSet;
43 mExcludedClasses = new HashSet<String>();
44 mExcludedTests = new HashSet<TestIdentifier>();
  /dalvik/dexgen/src/com/android/dexgen/dex/code/
DalvCode.java 22 import java.util.HashSet;
165 public HashSet<Type> getCatchTypes() {
175 public HashSet<Constant> getInsnConstants() {
  /dalvik/dx/src/com/android/dx/dex/code/
DalvCode.java 22 import java.util.HashSet;
165 public HashSet<Type> getCatchTypes() {
175 public HashSet<Constant> getInsnConstants() {
  /external/apache-harmony/support/src/test/java/tests/support/
Support_UnmodifiableCollectionTest.java 21 import java.util.HashSet;
55 HashSet<Integer> hs = new HashSet<Integer>();
  /external/bouncycastle/src/main/java/org/bouncycastle/x509/
ExtendedPKIXBuilderParameters.java 12 import java.util.HashSet;
57 this.excludedCerts = new HashSet(excludedCerts);
149 excludedCerts = new HashSet(_params.excludedCerts);
  /external/jsilver/src/com/google/clearsilver/jsilver/data/
UniqueStack.java 19 import java.util.HashSet;
45 // A HashSet allowing quick look-ups on the stack.
46 private HashSet<T> objectsSet = null;
113 objectsSet = new HashSet<T>();
  /external/webkit/Source/WebCore/loader/
CrossOriginAccessControl.cpp 33 #include <wtf/HashSet.h>
74 typedef HashSet<String, CaseFoldingHash> HTTPHeaderSet;
77 OwnPtr<HTTPHeaderSet> headerSet = adoptPtr(new HashSet<String, CaseFoldingHash>);
  /external/webkit/Source/WebCore/svg/graphics/filters/
SVGFilterBuilder.cpp 103 HashSet<FilterEffect*>& effectReferences = this->effectReferences(effect);
104 HashSet<FilterEffect*>::iterator end = effectReferences.end();
105 for (HashSet<FilterEffect*>::iterator it = effectReferences.begin(); it != end; ++it)
  /external/webkit/Source/WebCore/wml/
WMLTemplateElement.cpp 89 HashSet<WMLCardElement*> cards;
110 HashSet<WMLCardElement*>::iterator it = cards.begin();
111 HashSet<WMLCardElement*>::iterator end = cards.end();
  /external/webkit/Source/WebKit/android/WebCoreSupport/
GeolocationPermissions.h 33 #include <wtf/HashSet.h>
96 typedef HashSet<WTF::String> OriginSet;
150 typedef HashSet<WebCore::Frame*> FrameSet;

Completed in 3136 milliseconds

1 2 3 45 6 7 8 91011>>