Home
last modified time | relevance | path

Searched refs:HashCountedSet (Results 1 – 22 of 22) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/wtf/
DHashCountedSet.h37 typename Allocator = DefaultAllocator > class HashCountedSet {
38 WTF_USE_ALLOCATOR(HashCountedSet, Allocator);
47 HashCountedSet() {} in HashCountedSet() function
49 void swap(HashCountedSet& other) { m_impl.swap(other.m_impl); } in swap()
90 …inline typename HashCountedSet<T, U, V, W>::AddResult HashCountedSet<T, U, V, W>::add(const ValueT… in add()
98 inline bool HashCountedSet<T, U, V, W>::remove(iterator it) in remove()
116 inline void HashCountedSet<T, U, V, W>::removeAll(iterator it) in removeAll()
125 inline void copyToVector(const HashCountedSet<T, U, V, W>& collection, VectorType& vector) in copyToVector()
127 typedef typename HashCountedSet<T, U, V, W>::const_iterator iterator; in copyToVector()
138 …inline void copyToVector(const HashCountedSet<Value, HashFunctions, Traits, Allocator>& collection… in copyToVector()
[all …]
DRefCountedLeakCounter.cpp48 typedef HashCountedSet<const char*, PtrHash<const char*> > ReasonSet;
Dwtf.gypi59 'HashCountedSet.h',
/external/chromium_org/third_party/WebKit/Source/core/html/
DHTMLDocument.h87 void addItemToMap(HashCountedSet<AtomicString>&, const AtomicString&);
88 void removeItemFromMap(HashCountedSet<AtomicString>&, const AtomicString&);
90 HashCountedSet<AtomicString> m_namedItemCounts;
91 HashCountedSet<AtomicString> m_extraNamedItemCounts;
DHTMLDocument.cpp169 void HTMLDocument::addItemToMap(HashCountedSet<AtomicString>& map, const AtomicString& name) in addItemToMap()
178 void HTMLDocument::removeItemFromMap(HashCountedSet<AtomicString>& map, const AtomicString& name) in removeItemFromMap()
/external/chromium_org/third_party/WebKit/Source/core/fetch/
DResourceClientWalker.h38 ResourceClientWalker(const HashCountedSet<ResourceClient*>& set) in ResourceClientWalker()
41 typedef HashCountedSet<ResourceClient*>::const_iterator Iterator; in ResourceClientWalker()
62 const HashCountedSet<ResourceClient*>& m_clientSet;
DResource.h304 HashCountedSet<ResourceClient*> m_clients;
305 HashCountedSet<ResourceClient*> m_clientsAwaitingCallback;
DResource.cpp709 HashCountedSet<ResourceClient*>::iterator end2 = m_clients.end(); in switchClientsToRevalidatedResource()
710 for (HashCountedSet<ResourceClient*>::iterator it = m_clients.begin(); it != end2; ++it) { in switchClientsToRevalidatedResource()
/external/chromium_org/third_party/WebKit/Source/core/dom/
DCSSSelectorWatch.h71 HashCountedSet<String> m_matchingCallbackSelectors;
DCSSSelectorWatch.cpp106 HashCountedSet<String>::AddResult result = m_matchingCallbackSelectors.add(selector); in updateSelectorMatches()
/external/chromium_org/tools/clang/blink_gc_plugin/tests/
Dtrace_collections.h32 HashCountedSet<Member<HeapObject>, void, HeapAllocator> m_wtfCountedSet;
Dtrace_collections.txt38 HashCountedSet<Member<HeapObject>, void, HeapAllocator> m_wtfCountedSet;
/external/chromium_org/third_party/WebKit/Source/core/css/
DCSSImageGeneratorValue.h78 HashCountedSet<IntSize> m_sizes; // A count of how many times a given image size is in use.
/external/chromium_org/tools/clang/blink_gc_plugin/tests/heap/
Dstubs.h108 class HashCountedSet {};
198 class HeapHashCountedSet : public HashCountedSet<T, void, void, HeapAllocator> {
/external/chromium_org/third_party/WebKit/Source/core/frame/
DEventHandlerRegistry.h16 typedef HashCountedSet<EventTarget*> EventTargetSet;
DConsoleBase.h87 HashCountedSet<String> m_counts;
DConsoleBase.cpp115 HashCountedSet<String>::AddResult result = m_counts.add(identifier); in count()
DLocalDOMWindow.cpp179 typedef HashCountedSet<LocalDOMWindow*> DOMWindowSet;
/external/chromium_org/third_party/WebKit/Source/platform/heap/
DHeap.h1764 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,…
2085 struct GCInfoTrait<HashCountedSet<T, U, V, HeapAllocator> > {
2088 typedef HashCountedSet<T, U, V, HeapAllocator> TargetType;
2479 struct GCInfoTrait<HeapHashCountedSet<T, U, V> > : public GCInfoTrait<HashCountedSet<T, U, V, HeapA…
DHandle.h1166 #define WillBeHeapHashCountedSet WTF::HashCountedSet
1167 #define WillBePersistentHeapHashCountedSet WTF::HashCountedSet
/external/chromium_org/third_party/WebKit/Source/core/inspector/
DInspectorCSSAgent.h173 void collectPlatformFontsForRenderer(RenderText*, HashCountedSet<String>*);
DInspectorCSSAgent.cpp749 void InspectorCSSAgent::collectPlatformFontsForRenderer(RenderText* renderer, HashCountedSet<String… in collectPlatformFontsForRenderer()
788 HashCountedSet<String> fontStats; in getPlatformFontsForNode()
805 …for (HashCountedSet<String>::iterator it = fontStats.begin(), end = fontStats.end(); it != end; ++… in getPlatformFontsForNode()