Searched refs:HashSet (Results 1 - 25 of 556) sorted by relevance

1234567891011>>

/external/antlr/antlr-3.4/runtime/CSharp3/Sources/Antlr3.Runtime.JavaExtensions/
H A DSetExtensions.cs45 public static bool add<T>( this HashSet<T> set, T item )
51 public static void addAll<T>( this HashSet<T> set, IEnumerable<T> items )
59 public static void clear<T>( this HashSet<T> set )
65 public static bool contains<T>( this HashSet<T> set, T value )
71 public static bool remove<T>( this HashSet<T> set, T item )
77 public static int size<T>( this HashSet<T> set )
83 public static T[] toArray<T>( this HashSet<T> set )
H A DDictionaryExtensions.cs111 public static HashSet<object> keySet( this IDictionary map )
113 return new HashSet<object>( map.Keys.Cast<object>() );
117 public static HashSet<TKey> keySet<TKey, TValue>( this IDictionary<TKey, TValue> map )
119 return new HashSet<TKey>( map.Keys );
124 public static HashSet<TKey> keySet<TKey, TValue>( this Dictionary<TKey, TValue> map )
126 return new HashSet<TKey>( map.Keys );
130 public static HashSet<object> keySet<TKey, TValue>( this SortedList<TKey, TValue> map )
132 return new HashSet<object>( map.Keys.Cast<object>() );
/external/dexmaker/src/dx/java/com/android/dx/dex/code/
H A DCatchBuilder.java21 import java.util.HashSet;
47 public HashSet<Type> getCatchTypes();
/external/chromium_org/base/android/java/src/org/chromium/base/
H A DCollectionUtil.java9 import java.util.HashSet;
21 public static <E> HashSet<E> newHashSet(E... elements) {
22 HashSet<E> set = new HashSet<E>(elements.length);
/external/antlr/antlr-3.4/runtime/CSharp2/Sources/Antlr3.Runtime/Antlr.Runtime.JavaExtensions/
H A DDictionaryExtensions.cs106 public static HashSet<object> keySet(IDictionary map) {
107 return new HashSet<object>(map.Keys.Cast<object>());
111 public static HashSet<TKey> keySet<TKey, TValue>(IDictionary<TKey, TValue> map) {
112 return new HashSet<TKey>(map.Keys);
117 public static HashSet<TKey> keySet<TKey, TValue>(Dictionary<TKey, TValue> map) {
118 return new HashSet<TKey>(map.Keys);
122 public static HashSet<object> keySet<TKey, TValue>(SortedList<TKey, TValue> map) {
123 return new HashSet<object>(map.Keys.Cast<object>());
/external/apache-http/src/org/apache/http/impl/client/
H A DRedirectLocations.java35 import java.util.HashSet;
52 this.uris = new HashSet<URI>();
/external/chromium_org/third_party/WebKit/Source/core/css/invalidation/
H A DStyleSheetInvalidationAnalysis.h30 #include "wtf/HashSet.h"
53 HashSet<StringImpl*> m_idScopes;
54 HashSet<StringImpl*> m_classScopes;
/external/chromium_org/third_party/WebKit/Source/core/svg/
H A DSVGFontElement.h39 HashSet<String> unicodeName1;
40 HashSet<String> unicodeName2;
41 HashSet<String> glyphName1;
42 HashSet<String> glyphName2;
77 Vector<SVGGlyph> buildGlyphList(const UnicodeRanges&, const HashSet<String>& unicodeNames, const HashSet<String>& glyphNames) const;
/external/ceres-solver/internal/ceres/
H A Dsingle_linkage_clustering.cc52 const HashSet<int>& vertices = graph.vertices();
53 for (HashSet<int>::const_iterator it = vertices.begin();
59 for (HashSet<int>::const_iterator it1 = vertices.begin();
63 const HashSet<int>& neighbors = graph.Neighbors(vertex1);
64 for (HashSet<int>::const_iterator it2 = neighbors.begin();
H A Dgraph.h58 edges_[vertex] = HashSet<Vertex>();
76 const HashSet<Vertex>& sinks = edges_[vertex];
77 for (typename HashSet<Vertex>::const_iterator it = sinks.begin();
137 const HashSet<Vertex>& Neighbors(const Vertex& vertex) const {
141 const HashSet<Vertex>& vertices() const {
150 HashSet<Vertex> vertices_;
152 HashMap<Vertex, HashSet<Vertex> > edges_;
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashSet.h37 typename Allocator = DefaultAllocator> class HashSet { class in namespace:WTF
38 WTF_USE_ALLOCATOR(HashSet, Allocator);
58 void swap(HashSet& ref)
63 void swap(typename Allocator::template OtherType<HashSet>::Type other)
65 HashSet& ref = Allocator::getOther(other);
133 inline unsigned HashSet<T, U, V, W>::size() const
139 inline unsigned HashSet<T, U, V, W>::capacity() const
145 inline bool HashSet<T, U, V, W>::isEmpty() const
151 inline typename HashSet<T, U, V, W>::iterator HashSet<
[all...]
/external/chromium_org/third_party/WebKit/Source/core/page/
H A DInjectedStyleSheets.cpp28 #include "wtf/HashSet.h"
54 const HashSet<Page*>& pages = Page::ordinaryPages();
56 HashSet<Page*>::const_iterator end = pages.end();
57 for (HashSet<Page*>::const_iterator it = pages.begin(); it != end; ++it) {
/external/chromium_org/third_party/WebKit/Source/core/html/canvas/
H A DWebGLContextGroup.h30 #include "wtf/HashSet.h"
74 HashSet<WebGLRenderingContextBase*> m_contexts;
75 HashSet<WebGLSharedObject*> m_groupObjects;
H A DCanvasRenderingContext.h31 #include "wtf/HashSet.h"
76 HashSet<String> m_cleanURLs;
77 HashSet<String> m_dirtyURLs;
/external/chromium_org/third_party/WebKit/Source/platform/graphics/gpu/
H A DExtensions3DUtil.h12 #include "wtf/HashSet.h"
36 HashSet<String> m_enabledExtensions;
37 HashSet<String> m_requestableExtensions;
/external/chromium_org/third_party/WebKit/Source/web/
H A DOpenedFrameTracker.cpp38 HashSet<WebFrame*>::iterator end = m_openedFrames.end();
39 for (HashSet<WebFrame*>::iterator it = m_openedFrames.begin(); it != end; ++it)
H A DOpenedFrameTracker.h8 #include "wtf/HashSet.h"
32 WTF::HashSet<WebFrame*> m_openedFrames;
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DMutationObserverRegistration.h36 #include "wtf/HashSet.h"
46 static PassOwnPtrWillBeRawPtr<MutationObserverRegistration> create(MutationObserver&, Node*, MutationObserverOptions, const HashSet<AtomicString>& attributeFilter);
49 void resetObservation(MutationObserverOptions, const HashSet<AtomicString>& attributeFilter);
69 MutationObserverRegistration(MutationObserver&, Node*, MutationObserverOptions, const HashSet<AtomicString>& attributeFilter);
78 HashSet<AtomicString> m_attributeFilter;
H A DCSSSelectorWatch.h38 #include "wtf/HashSet.h"
74 HashSet<String> m_addedSelectors;
75 HashSet<String> m_removedSelectors;
/external/chromium_org/third_party/WebKit/Source/core/frame/csp/
H A DMediaListDirective.h10 #include "wtf/HashSet.h"
26 HashSet<String> m_pluginTypes;
/external/chromium_org/third_party/WebKit/Source/core/rendering/line/
H A DWordMeasurement.h28 #include "wtf/HashSet.h"
48 HashSet<const SimpleFontData*> fallbackFonts;
/external/mockito/cglib-and-asm/src/org/mockito/cglib/beans/
H A DFixedKeySet.java26 set = Collections.unmodifiableSet(new HashSet(Arrays.asList(keys)));
/external/mockito/cglib-and-asm/src/org/mockito/cglib/core/
H A DDuplicatesPredicate.java22 private Set unique = new HashSet();
/external/chromium_org/third_party/WebKit/Source/core/rendering/style/
H A DKeyframeList.h30 #include "wtf/HashSet.h"
50 const HashSet<CSSPropertyID>& properties() const { return m_properties; }
60 HashSet<CSSPropertyID> m_properties; // The properties specified in this keyframe.
80 HashSet<CSSPropertyID>::const_iterator beginProperties() const { return m_properties.begin(); }
81 HashSet<CSSPropertyID>::const_iterator endProperties() const { return m_properties.end(); }
91 HashSet<CSSPropertyID> m_properties; // The properties being animated.
/external/apache-harmony/security/src/test/api/java/org/apache/harmony/security/tests/java/security/cert/
H A DPKIXBuilderParametersTest.java29 import java.util.HashSet;
107 HashSet originalSet = (HashSet) taSet;
108 HashSet originalSetCopy = (HashSet) originalSet.clone();
145 new PKIXBuilderParameters(new HashSet(), null);

Completed in 8300 milliseconds

1234567891011>>