Searched refs:HashSet (Results 176 - 200 of 574) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFETileElement.cpp43 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
H A DSVGFitToViewBox.cpp61 void SVGFitToViewBox::addSupportedAttributes(HashSet<QualifiedName>& supportedAttributes)
H A DSVGFitToViewBox.h34 #include "wtf/HashSet.h"
51 static void addSupportedAttributes(HashSet<QualifiedName>&);
H A DSVGPolyElement.cpp41 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
H A DSVGStopElement.cpp43 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
H A DSVGViewElement.cpp41 DEFINE_STATIC_LOCAL(HashSet<QualifiedName>, supportedAttributes, ());
H A DSVGZoomAndPan.h27 #include "wtf/HashSet.h"
51 static void addSupportedAttributes(HashSet<QualifiedName>&);
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFilterBuilder.h26 #include "wtf/HashSet.h"
37 typedef HashSet<FilterEffect*> FilterEffectSet;
/external/chromium_org/third_party/WebKit/Source/devtools/scripts/jsdoc-validator/src/org/chromium/devtools/jsdoc/checks/
H A DMethodAnnotationChecker.java11 import java.util.HashSet;
25 private final Set<FunctionRecord> valueReturningFunctions = new HashSet<>();
26 private final Set<FunctionRecord> throwingFunctions = new HashSet<>();
63 Set<String> paramNames = new HashSet<>();
H A DProtoFollowsExtendsChecker.java11 import java.util.HashSet;
18 private static final Set<String> IGNORED_SUPER_TYPES = new HashSet<>();
23 private final Set<TypeRecord> typesWithAssignedProto = new HashSet<>();
24 private final Set<FunctionRecord> functionsMissingSuperCall = new HashSet<>();
/external/chromium_org/third_party/WebKit/Source/modules/webdatabase/
H A DDatabaseContext.h97 HashSet<DatabaseBackendBase*> m_openSyncDatabases;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
H A DExtensions3DUtil.cpp16 void splitStringHelper(const String& str, HashSet<String>& set)
/external/chromium_org/third_party/WebKit/Source/web/
H A DInspectorClientImpl.h71 virtual void getAllocatedObjects(HashSet<const void*>&) OVERRIDE;
/external/chromium_org/tools/clang/blink_gc_plugin/tests/
H A Dtrace_collections.h23 HashSet<Member<HeapObject>, void, HeapAllocator> m_wtfSet;
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DStdCatchBuilder.java28 import java.util.HashSet;
96 public HashSet<Type> getCatchTypes() {
97 HashSet<Type> result = new HashSet<Type>(20);
/external/emma/core/java12/com/vladium/util/
H A DStrings.java14 import java.util.HashSet;
55 final Set /* String */ _strings = new HashSet (length);
96 final Set /* String */ _strings = new HashSet (length);
141 final Set /* String */ _strings = new HashSet (length);
/external/jarjar/src/main/com/tonicsystems/jarjar/
H A DAbstractDepHandler.java26 private final Set<List<Object>> seenIt = new HashSet<List<Object>>();
/external/jarjar/src/main/com/tonicsystems/jarjar/util/
H A DStandaloneJarProcessor.java34 Set<String> entries = new HashSet<String>();
/external/nist-sip/java/gov/nist/javax/sip/parser/
H A DContactParser.java34 import java.util.HashSet;
/external/proguard/src/proguard/
H A DTargeter.java55 Set newerClassVersions = configuration.warn != null ? null : new HashSet();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/tester/android/util/
H A DTestFragmentManager.java18 import java.util.HashSet;
183 public HashSet<Fragment> getFragments() {
184 HashSet<Fragment> fragments = new HashSet<Fragment>();
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/tool/
H A DCompositeGrammar.java58 protected Set<NFAState> refClosureBusy = new HashSet<NFAState>();
104 protected Set<String> lexerRules = new HashSet<String>();
276 Set<String> ruleNames = new HashSet();
277 Set<Rule> rules = new HashSet();
395 Set<String> ruleDefs = new HashSet<String>();
401 Set<String> localRuleDefs = new HashSet<String>();
402 Set<String> overrides = new HashSet<String>();
437 Set<Rule> refs = new HashSet<Rule>();
459 Set<String> ruleDefs = new HashSet<String>();
460 Set<String> ruleRefs = new HashSet<Strin
[all...]
/external/doclava/src/com/google/doclava/
H A DStubs.java29 import java.util.HashSet;
35 String removedApiFile, HashSet<String> stubPackages) {
37 final HashSet<ClassInfo> notStrippable = new HashSet<ClassInfo>();
196 public static void cantStripThis(ClassInfo cl, HashSet<ClassInfo> notStrippable, String why) {
267 private static void cantStripThis(ArrayList<MethodInfo> mInfos, HashSet<ClassInfo> notStrippable) {
335 static void writeClassFile(String stubsDir, HashSet<ClassInfo> notStrippable, ClassInfo cl) {
365 static void writeClassFile(PrintStream stream, HashSet<ClassInfo> notStrippable, ClassInfo cl) {
373 static void writeClass(PrintStream stream, HashSet<ClassInfo> notStrippable, ClassInfo cl) {
390 HashSet<Strin
[all...]
/external/antlr/antlr-3.4/tool/src/main/java/org/antlr/analysis/
H A DDecisionProbe.java82 protected Set<DFAState> statesWithSyntacticallyAmbiguousAltsSet = new HashSet<DFAState>();
96 protected Set<DFAState> statesResolvedWithSemanticPredicatesSet = new HashSet<DFAState>();
114 protected Set<DFAState> danglingStates = new HashSet<DFAState>();
119 protected Set<Integer> altsWithProblem = new HashSet<Integer>();
303 statesVisitedDuringSampleSequence = new HashSet<Integer>();
378 statesVisitedAtInputDepth = new HashSet();
588 (HashSet)targetToCallSiteMap.get(targetRule);
590 callSites = new HashSet();
604 Set dfaStatesUnaliased = new HashSet();
754 Set dfaStates = new HashSet();
[all...]
/external/apache-harmony/security/src/test/support/common/java/org/apache/harmony/security/tests/support/cert/
H A DTestUtils.java44 import java.util.HashSet;
126 HashSet set = new HashSet();
274 HashSet s = new HashSet();

Completed in 2120 milliseconds

1234567891011>>