Searched refs:HashCountedSet (Results 1 - 20 of 20) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/fetch/
H A DResourceClientWalker.h29 #include "wtf/HashCountedSet.h"
38 ResourceClientWalker(const HashCountedSet<ResourceClient*>& set)
41 typedef HashCountedSet<ResourceClient*>::const_iterator Iterator;
62 const HashCountedSet<ResourceClient*>& m_clientSet;
H A DResource.h32 #include "wtf/HashCountedSet.h"
304 HashCountedSet<ResourceClient*> m_clients;
305 HashCountedSet<ResourceClient*> m_clientsAwaitingCallback;
H A DResource.cpp709 HashCountedSet<ResourceClient*>::iterator end2 = m_clients.end();
710 for (HashCountedSet<ResourceClient*>::iterator it = m_clients.begin(); it != end2; ++it) {
/external/chromium_org/third_party/WebKit/Source/wtf/
H A DHashCountedSet.h37 typename Allocator = DefaultAllocator > class HashCountedSet { class in namespace:WTF
38 WTF_USE_ALLOCATOR(HashCountedSet, Allocator);
47 HashCountedSet() {} function in class:WTF::HashCountedSet
49 void swap(HashCountedSet& other) { m_impl.swap(other.m_impl); }
90 inline typename HashCountedSet<T, U, V, W>::AddResult HashCountedSet<T, U, V, W>::add(const ValueType& value)
98 inline bool HashCountedSet<T, U, V, W>::remove(iterator it)
116 inline void HashCountedSet<T, U, V, W>::removeAll(iterator it)
125 inline void copyToVector(const HashCountedSet<T, U, V, W>& collection, VectorType& vector) argument
127 typedef typename HashCountedSet<
138 copyToVector(const HashCountedSet<Value, HashFunctions, Traits, Allocator>& collection, Vector<Value, inlineCapacity, VectorAllocator>& vector) argument
[all...]
H A DRefCountedLeakCounter.cpp27 #include "wtf/HashCountedSet.h"
48 typedef HashCountedSet<const char*, PtrHash<const char*> > ReasonSet;
/external/chromium_org/third_party/WebKit/Source/core/html/
H A DHTMLDocument.h28 #include "wtf/HashCountedSet.h"
87 void addItemToMap(HashCountedSet<AtomicString>&, const AtomicString&);
88 void removeItemFromMap(HashCountedSet<AtomicString>&, const AtomicString&);
90 HashCountedSet<AtomicString> m_namedItemCounts;
91 HashCountedSet<AtomicString> m_extraNamedItemCounts;
H A DHTMLDocument.cpp169 void HTMLDocument::addItemToMap(HashCountedSet<AtomicString>& map, const AtomicString& name)
178 void HTMLDocument::removeItemFromMap(HashCountedSet<AtomicString>& map, const AtomicString& name)
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DCSSSelectorWatch.h37 #include "wtf/HashCountedSet.h"
71 HashCountedSet<String> m_matchingCallbackSelectors;
H A DCSSSelectorWatch.cpp106 HashCountedSet<String>::AddResult result = m_matchingCallbackSelectors.add(selector);
/external/chromium_org/third_party/WebKit/Source/core/css/
H A DCSSImageGeneratorValue.h31 #include "wtf/HashCountedSet.h"
78 HashCountedSet<IntSize> m_sizes; // A count of how many times a given image size is in use.
/external/chromium_org/third_party/WebKit/Source/core/frame/
H A DConsoleBase.h87 HashCountedSet<String> m_counts;
H A DEventHandlerRegistry.h9 #include "wtf/HashCountedSet.h"
16 typedef HashCountedSet<EventTarget*> EventTargetSet;
H A DConsoleBase.cpp115 HashCountedSet<String>::AddResult result = m_counts.add(identifier);
H A DLocalDOMWindow.cpp179 typedef HashCountedSet<LocalDOMWindow*> DOMWindowSet;
/external/chromium_org/tools/clang/blink_gc_plugin/tests/
H A Dtrace_collections.h32 HashCountedSet<Member<HeapObject>, void, HeapAllocator> m_wtfCountedSet;
/external/chromium_org/tools/clang/blink_gc_plugin/tests/heap/
H A Dstubs.h108 class HashCountedSet {}; class in namespace:WTF
198 class HeapHashCountedSet : public HashCountedSet<T, void, void, HeapAllocator> {
/external/chromium_org/third_party/WebKit/Source/core/inspector/
H A DInspectorCSSAgent.h35 #include "wtf/HashCountedSet.h"
173 void collectPlatformFontsForRenderer(RenderText*, HashCountedSet<String>*);
H A DInspectorCSSAgent.cpp749 void InspectorCSSAgent::collectPlatformFontsForRenderer(RenderText* renderer, HashCountedSet<String>* fontStats)
788 HashCountedSet<String> fontStats;
805 for (HashCountedSet<String>::iterator it = fontStats.begin(), end = fontStats.end(); it != end; ++it) {
/external/chromium_org/third_party/WebKit/Source/platform/heap/
H A DHeap.h40 #include "wtf/HashCountedSet.h"
1764 class HeapHashCountedSet : public HashCountedSet<Value, HashFunctions, Traits, HeapAllocator> { };
1900 struct ThreadingTrait<HashCountedSet<T, U, V, HeapAllocator> > {
1926 struct ThreadingTrait<HeapHashCountedSet<T, U, V> > : public ThreadingTrait<HashCountedSet<T, U, V, HeapAllocator> > { };
2085 struct GCInfoTrait<HashCountedSet<T, U, V, HeapAllocator> > {
2088 typedef HashCountedSet<T, U, V, HeapAllocator> TargetType;
2092 false, // HashCountedSet is just a HashTable, and needs no finalizer.
2479 struct GCInfoTrait<HeapHashCountedSet<T, U, V> > : public GCInfoTrait<HashCountedSet<T, U, V, HeapAllocator> > { };
H A DHandle.h1166 #define WillBeHeapHashCountedSet WTF::HashCountedSet
1167 #define WillBePersistentHeapHashCountedSet WTF::HashCountedSet

Completed in 2046 milliseconds