Searched refs:HashSet (Results 26 - 50 of 574) sorted by relevance

1234567891011>>

/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCSSSelectorWatch.h38 #include "wtf/HashSet.h"
73 HashSet<String> m_addedSelectors;
74 HashSet<String> m_removedSelectors;
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DCanvasRenderingContext.h31 #include "wtf/HashSet.h"
75 HashSet<String> m_cleanURLs;
76 HashSet<String> m_dirtyURLs;
H A DWebGLContextGroup.cpp52 HashSet<WebGLRenderingContextBase*>::iterator it = m_contexts.begin();
83 HashSet<WebGLSharedObject*>::iterator it = m_groupObjects.begin();
94 for (HashSet<WebGLRenderingContextBase*>::iterator it = m_contexts.begin(); it != m_contexts.end(); ++it)
/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DRenderBR.h41 virtual float width(unsigned /*from*/, unsigned /*len*/, const Font&, float /*xPos*/, TextDirection, HashSet<const SimpleFontData*>* = 0 /*fallbackFonts*/ , GlyphOverflow* = 0) const OVERRIDE { return 0; }
42 virtual float width(unsigned /*from*/, unsigned /*len*/, float /*xpos*/, TextDirection, bool = false /*firstLine*/, HashSet<const SimpleFontData*>* = 0 /*fallbackFonts*/, GlyphOverflow* = 0) const OVERRIDE { return 0; }
/external/javassist/src/main/javassist/bytecode/analysis/
H A DSubroutine.java19 import java.util.HashSet;
29 //private Set callers = new HashSet();
31 private Set access = new HashSet();
/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowBluetoothAdapter.java10 import java.util.HashSet;
19 private Set<BluetoothDevice> bondedDevices = new HashSet<BluetoothDevice>();
/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceLoaderSet.h35 #include "wtf/HashSet.h"
41 typedef HashSet<RefPtr<ResourceLoader> > SetType;
/external/chromium_org/third_party/WebKit/Source/core/rendering/svg/
H A DSVGResourcesCycleSolver.h23 #include "wtf/HashSet.h"
40 typedef HashSet<RenderSVGResourceContainer*> ResourceSet;
H A DSVGResourcesCache.cpp61 HashSet<RenderSVGResourceContainer*> resourceSet;
64 HashSet<RenderSVGResourceContainer*>::iterator end = resourceSet.end();
65 for (HashSet<RenderSVGResourceContainer*>::iterator it = resourceSet.begin(); it != end; ++it)
76 HashSet<RenderSVGResourceContainer*> resourceSet;
79 HashSet<RenderSVGResourceContainer*>::iterator end = resourceSet.end();
80 for (HashSet<RenderSVGResourceContainer*>::iterator it = resourceSet.begin(); it != end; ++it)
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DScopedPageLoadDeferrer.cpp28 #include "wtf/HashSet.h"
34 const HashSet<Page*>& pages = Page::ordinaryPages();
36 HashSet<Page*>::const_iterator end = pages.end();
37 for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) {
/external/doclava/src/com/google/doclava/
H A DParameterInfo.java21 import java.util.HashSet;
53 public void makeHDF(Data data, String base, boolean isLastVararg, HashSet<String> typeVariables) {
59 HashSet<String> typeVariables) {
H A DTypeInfo.java25 new HashSet<String>(Arrays.asList("boolean", "byte", "char", "double", "float", "int",
129 return fullName(new HashSet<String>());
133 public static String typeArgumentsName(ArrayList<TypeInfo> args, HashSet<String> typeVars) {
148 public String fullName(HashSet<String> typeVars) {
153 public String fullNameNoBounds(HashSet<String> typeVars) {
159 private boolean checkRecurringTypeVar(HashSet<String> typeVars) {
169 private String fullNameNoDimensionNoBounds(HashSet<String> typeVars) {
184 public String fullNameNoDimension(HashSet<String> typeVars) {
217 makeHDFRecursive(data, base, false, false, new HashSet<String>());
221 makeHDFRecursive(data, base, true, false, new HashSet<Strin
[all...]
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jce/provider/
H A DPKIXCRLUtil.java10 import java.util.HashSet;
27 Set initialSet = new HashSet();
41 Set finalSet = new HashSet();
78 Set completeSet = new HashSet();
109 Set crls = new HashSet();
/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathParser.h122 HashSet<ParseNode*> m_parseNodes;
123 HashSet<Vector<OwnPtr<Predicate> >*> m_predicateVectors;
124 HashSet<Vector<OwnPtr<Expression> >*> m_expressionVectors;
125 HashSet<OwnPtr<Step::NodeTest> > m_nodeTests;
127 HashSet<OwnPtr<String> > m_strings;
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/jcajce/provider/util/
H A DDigestFactory.java4 import java.util.HashSet;
28 private static Set md5 = new HashSet();
29 private static Set sha1 = new HashSet();
30 private static Set sha224 = new HashSet();
31 private static Set sha256 = new HashSet();
32 private static Set sha384 = new HashSet();
33 private static Set sha512 = new HashSet();
/external/chromium_org/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
H A DCacheData.java30 import java.util.HashSet;
65 private final HashSet<String> mRequestedKeys = new HashSet<String>();
71 private final HashSet<String> mBadKeys = new HashSet<String>();
78 private final HashMap<LookupKey, HashSet<CacheListener>> mTemporaryListenerStore =
79 new HashMap<LookupKey, HashSet<CacheListener>>();
380 HashSet<CacheListener> listeners = mTemporaryListenerStore.get(lookupKey);
392 HashSet<CacheListener> listeners = mTemporaryListenerStore.get(key);
394 listeners = new HashSet<CacheListene
[all...]
/external/mockito/src/org/mockito/internal/util/collections/
H A DHashCodeAndEqualsSafeSet.java11 import java.util.HashSet;
34 private HashSet<HashCodeAndEqualsMockWrapper> backingHashSet = new HashSet<HashCodeAndEqualsMockWrapper>();
131 private HashSet<HashCodeAndEqualsMockWrapper> asWrappedMocks(Collection<?> mocks) {
133 HashSet<HashCodeAndEqualsMockWrapper> hashSet = new HashSet<HashCodeAndEqualsMockWrapper>();
/external/apache-harmony/support/src/test/java/tests/support/
H A DSupport_UnmodifiableCollectionTest.java21 import java.util.HashSet;
55 HashSet<Integer> hs = new HashSet<Integer>();
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/
H A DExtendedPKIXBuilderParameters.java12 import java.util.HashSet;
57 this.excludedCerts = new HashSet(excludedCerts);
149 excludedCerts = new HashSet(_params.excludedCerts);
/external/ceres-solver/internal/ceres/
H A Dgraph_algorithms.h98 const HashSet<Vertex>& vertices = graph.vertices();
113 for (typename HashSet<Vertex>::const_iterator it = vertices.begin();
134 const HashSet<Vertex>& neighbors = graph.Neighbors(vertex);
135 for (typename HashSet<Vertex>::const_iterator it = neighbors.begin();
175 const HashSet<Vertex>& vertices = graph.vertices();
191 for (typename HashSet<Vertex>::const_iterator it = vertices.begin();
209 const HashSet<Vertex>& neighbors = graph.Neighbors(vertex);
210 for (typename HashSet<Vertex>::const_iterator it = neighbors.begin();
287 const HashSet<Vertex>& vertices = graph.vertices();
288 for (typename HashSet<Verte
[all...]
/external/chromium_org/third_party/WebKit/Source/core/svg/graphics/filters/
H A DSVGFilterBuilder.cpp97 HashSet<FilterEffect*>& effectReferences = this->effectReferences(effect);
98 HashSet<FilterEffect*>::iterator end = effectReferences.end();
99 for (HashSet<FilterEffect*>::iterator it = effectReferences.begin(); it != end; ++it)
/external/chromium_org/ui/android/java/src/org/chromium/ui/autofill/
H A DAutofillPopup.java18 import java.util.HashSet;
82 HashSet<Integer> separators = new HashSet<Integer>();
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DDalvCode.java22 import java.util.HashSet;
165 public HashSet<Type> getCatchTypes() {
175 public HashSet<Constant> getInsnConstants() {
/external/jsilver/src/com/google/clearsilver/jsilver/data/
H A DUniqueStack.java19 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/mockito/cglib-and-asm/src/org/mockito/asm/tree/analysis/
H A DSmallSet.java33 import java.util.HashSet;
115 HashSet r = new HashSet(4);

Completed in 786 milliseconds

1234567891011>>