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

<<11121314151617181920>>

  /external/webkit/Source/WebCore/platform/chromium/
ChromiumDataObjectLegacy.h 38 #include <wtf/HashSet.h>
66 HashSet<String> types() const;
  /external/webkit/Source/WebCore/platform/graphics/qt/
MediaPlayerPrivatePhonon.h 133 static void getSupportedTypes(HashSet<String>&);
135 static HashSet<String>& supportedTypesCache();
  /external/webkit/Source/WebCore/rendering/style/
KeyframeList.cpp 88 for (HashSet<int>::const_iterator it = currKeyframe.properties().begin(); it != currKeyframe.properties().end(); ++it)
92 for (HashSet<int>::const_iterator it = keyframe.properties().begin(); it != keyframe.properties().end(); ++it)
  /external/webkit/Source/WebCore/storage/
OriginUsageRecord.cpp 79 HashSet<String>::iterator iUnknown = m_unknownSet.begin();
80 HashSet<String>::iterator endUnknown = m_unknownSet.end();
  /external/webkit/Tools/DumpRenderTree/pthreads/
JavaScriptThreadingPthreads.cpp 38 #include <wtf/HashSet.h>
47 typedef HashSet<pthread_t> ThreadSet;
  /frameworks/base/services/java/com/android/server/net/
NetworkIdentitySet.java 25 import java.util.HashSet;
33 public class NetworkIdentitySet extends HashSet<NetworkIdentity> {
  /frameworks/base/tests/DumpRenderTree/src/com/android/dumprendertree/forwarder/
ForwardServer.java 24 import java.util.HashSet;
50 forwarders = new HashSet<Forwarder>();
  /frameworks/base/tests/DumpRenderTree2/src/com/android/dumprendertree2/forwarder/
Forwarder.java 24 import java.util.HashSet;
39 private Set<ConnectionHandler> mConnectionHandlers = new HashSet<ConnectionHandler>();
  /libcore/luni/src/test/java/tests/api/org/xml/sax/support/
MockFilter.java 21 import java.util.HashSet;
39 private Set<String> features = new HashSet<String>();
  /libcore/support/src/test/java/org/apache/harmony/security/tests/support/cert/
MyCertificateFactorySpi.java 34 import java.util.HashSet;
57 list = new HashSet<String>();
  /system/media/mca/filterfw/java/android/filterfw/core/
FilterContext.java 26 import java.util.HashSet;
37 private Set<FilterGraph> mGraphs = new HashSet<FilterGraph>();
FilterGraph.java 21 import java.util.HashSet;
40 private HashSet<Filter> mFilters = new HashSet<Filter>();
193 Set<Filter> processedFilters = new HashSet<Filter>();
343 private HashSet<Filter> getSourceFilters() {
344 HashSet<Filter> sourceFilters = new HashSet<Filter>();
  /cts/tools/signature-tools/src/signature/converter/dex/
DexToSigConverter.java 50 import java.util.HashSet;
166 Set<DexClass> classes = new HashSet<DexClass>();
174 Set<SigClassDefinition> allClasses = new HashSet<SigClassDefinition>();
180 aPackage.setClasses(new HashSet<IClassDefinition>(classes));
201 new HashSet<IClassDefinition>();
225 return new HashSet<IPackage>(packageToDexClasses.keySet());
268 Set<SigClassDefinition> classes = new HashSet<SigClassDefinition>();
323 sigClass.setInterfaces(new HashSet<ITypeReference>(
349 Set<ITypeReference> interfaces = new HashSet<ITypeReference>();
367 sigClass.setConstructors(new HashSet<IConstructor>(constructors))
    [all...]
  /external/apache-harmony/security/src/test/impl/java/org/apache/harmony/security/tests/java/security/cert/
PKIXParameters_ImplTest.java 36 import java.util.HashSet;
145 HashSet newSet = new HashSet(p.getTrustAnchors());
146 HashSet newSetCopy = (HashSet)newSet.clone();
192 Set s = new HashSet();
  /external/webkit/Source/WebCore/page/
Page.cpp 100 static HashSet<Page*>* allPages;
111 HashSet<Page*>::iterator end = allPages->end();
112 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) {
126 HashSet<Page*>::iterator end = allPages->end();
127 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it) {
183 allPages = new HashSet<Page*>;
406 HashSet<Page*>::iterator end = allPages->end();
407 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it)
436 HashSet<Page*>::iterator end = allPages->end();
437 for (HashSet<Page*>::iterator it = allPages->begin(); it != end; ++it)
    [all...]
  /external/webkit/Source/WebCore/platform/text/
TextEncodingRegistry.cpp 37 #include <wtf/HashSet.h>
129 static HashSet<const char*>* japaneseEncodings;
130 static HashSet<const char*>* nonBackslashEncodings;
242 static void addEncodingName(HashSet<const char*>* set, const char* name)
258 japaneseEncodings = new HashSet<const char*>;
274 nonBackslashEncodings = new HashSet<const char*>;
  /frameworks/ex/common/java/com/android/common/contacts/
DataUsageStatUpdater.java 38 import java.util.HashSet;
84 final Set<String> addresses = new HashSet<String>();
127 final Set<Long> contactIds = new HashSet<Long>(cursor.getCount());
128 final Set<Long> dataIds = new HashSet<Long>(cursor.getCount());
177 final Set<Long> contactIds = new HashSet<Long>(cursor.getCount());
178 final Set<Long> dataIds = new HashSet<Long>(cursor.getCount());
  /libcore/luni/src/test/java/tests/security/cert/
PKIXBuilderParametersTest.java 38 import java.util.HashSet;
131 HashSet<TrustAnchor> originalSet = (HashSet<TrustAnchor>) taSet;
132 HashSet<TrustAnchor> originalSetCopy = (HashSet<TrustAnchor>) originalSet
170 new PKIXBuilderParameters(new HashSet<TrustAnchor>(), null);
  /sdk/lint/libs/lint_checks/src/com/android/tools/lint/checks/
TranslationDetector.java 37 import java.util.HashSet;
106 mNames = new HashSet<String>();
135 Set<File> parentFolders = new HashSet<File>();
196 Set<String> allStrings = new HashSet<String>(200);
243 HashSet<String> copy = new HashSet<String>(a);
DuplicateIdDetector.java 36 import java.util.HashSet;
99 mIds = new HashSet<String>();
177 resourceToLayouts.put(from, new HashSet<String>(layouts));
192 resourceToIds.put(from, new HashSet<String>(ids));
200 Set<String> included = new HashSet<String>();
208 Set<String> entryPoints = new HashSet<String>(resourceToLayouts.keySet());
214 Set<String> visiting = new HashSet<String>();
249 merged = new HashSet<String>(currentIds);
251 merged = new HashSet<String>();
296 findOrigin(chain, from, id, new HashSet<String>()
    [all...]
  /external/apache-harmony/auth/src/test/java/common/javax/security/auth/
SubjectTest.java 38 import java.util.HashSet;
98 private final HashSet<Principal> h1 = new HashSet<Principal>(); // principals
100 private final HashSet<Object> h2 = new HashSet<Object>(); // public credentials
102 private final HashSet<Object> h3 = new HashSet<Object>(); // private credentials
203 new Subject(false, null, new HashSet(), new HashSet());
209 new Subject(false, new HashSet(), null, new HashSet())
    [all...]
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
LocalSdkParser.java 34 import java.util.HashSet;
84 HashSet<File> visited = new HashSet<File>();
195 HashSet<File> visited,
217 HashSet<File> visited,
263 HashSet<File> visited,
298 HashSet<File> visited,
332 HashSet<File> visited,
378 HashSet<File> visited,
420 Set<String> names = new HashSet<String>();
    [all...]
  /external/jsilver/src/com/google/clearsilver/jsilver/autoescape/
AutoEscapeContext.java 42 import java.util.HashSet;
85 private static final HashSet<HtmlParserFactory.AttributeOptions> quotedJsAttributeOption;
86 private static final HashSet<HtmlParserFactory.AttributeOptions> partialUrlAttributeOption;
87 private static final HashSet<HtmlParserFactory.ModeOptions> jsModeOption;
92 quotedJsAttributeOption = new HashSet<HtmlParserFactory.AttributeOptions>();
95 partialUrlAttributeOption = new HashSet<HtmlParserFactory.AttributeOptions>();
98 jsModeOption = new HashSet<HtmlParserFactory.ModeOptions>();
  /external/webkit/Source/WebCore/css/
CSSStyleSelector.h 32 #include <wtf/HashSet.h>
191 HashSet<AtomicStringImpl*> idsInRules;
262 SelectorMatch checkSelector(CSSSelector*, Element*, HashSet<AtomicStringImpl*>* selectorAttrs, PseudoId& dynamicPseudo, bool isSubSelector, bool encounteredLink, RenderStyle* = 0, RenderStyle* elementParentStyle = 0) const;
263 bool checkOneSelector(CSSSelector*, Element*, HashSet<AtomicStringImpl*>* selectorAttrs, PseudoId& dynamicPseudo, bool isSubSelector, bool encounteredLink, RenderStyle*, RenderStyle* elementParentStyle) const;
279 mutable HashSet<LinkHash, LinkHashHash> m_linksCheckedForVisitedState;
338 HashSet<int> m_pendingImageProperties; // Hash of CSSPropertyIDs
359 HashSet<AtomicStringImpl*> m_selectorAttrs;
  /frameworks/base/tools/layoutlib/create/src/com/android/tools/layoutlib/create/
AsmGenerator.java 29 import java.util.HashSet;
62 private HashSet<String> mClassesNotRenamed;
80 mStubMethods = new HashSet<String>(Arrays.asList(createInfo.getOverriddenMethods()));
93 methods = new HashSet<String>();
102 methods = new HashSet<String>();
110 mClassesNotRenamed = new HashSet<String>();
146 returnTypes = new HashSet<String>();

Completed in 2138 milliseconds

<<11121314151617181920>>