/external/chromium_org/third_party/WebKit/Source/wtf/ |
D | HashCountedSet.h | 37 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 …]
|
D | RefCountedLeakCounter.cpp | 48 typedef HashCountedSet<const char*, PtrHash<const char*> > ReasonSet;
|
D | wtf.gypi | 59 'HashCountedSet.h',
|
/external/chromium_org/third_party/WebKit/Source/core/html/ |
D | HTMLDocument.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;
|
D | HTMLDocument.cpp | 169 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/ |
D | ResourceClientWalker.h | 38 ResourceClientWalker(const HashCountedSet<ResourceClient*>& set) in ResourceClientWalker() 41 typedef HashCountedSet<ResourceClient*>::const_iterator Iterator; in ResourceClientWalker() 62 const HashCountedSet<ResourceClient*>& m_clientSet;
|
D | Resource.h | 304 HashCountedSet<ResourceClient*> m_clients; 305 HashCountedSet<ResourceClient*> m_clientsAwaitingCallback;
|
D | Resource.cpp | 709 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/ |
D | CSSSelectorWatch.h | 71 HashCountedSet<String> m_matchingCallbackSelectors;
|
D | CSSSelectorWatch.cpp | 106 HashCountedSet<String>::AddResult result = m_matchingCallbackSelectors.add(selector); in updateSelectorMatches()
|
/external/chromium_org/tools/clang/blink_gc_plugin/tests/ |
D | trace_collections.h | 32 HashCountedSet<Member<HeapObject>, void, HeapAllocator> m_wtfCountedSet;
|
D | trace_collections.txt | 38 HashCountedSet<Member<HeapObject>, void, HeapAllocator> m_wtfCountedSet;
|
/external/chromium_org/third_party/WebKit/Source/core/css/ |
D | CSSImageGeneratorValue.h | 78 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/ |
D | stubs.h | 108 class HashCountedSet {}; 198 class HeapHashCountedSet : public HashCountedSet<T, void, void, HeapAllocator> {
|
/external/chromium_org/third_party/WebKit/Source/core/frame/ |
D | EventHandlerRegistry.h | 16 typedef HashCountedSet<EventTarget*> EventTargetSet;
|
D | ConsoleBase.h | 87 HashCountedSet<String> m_counts;
|
D | ConsoleBase.cpp | 115 HashCountedSet<String>::AddResult result = m_counts.add(identifier); in count()
|
D | LocalDOMWindow.cpp | 179 typedef HashCountedSet<LocalDOMWindow*> DOMWindowSet;
|
/external/chromium_org/third_party/WebKit/Source/platform/heap/ |
D | Heap.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,… 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…
|
D | Handle.h | 1166 #define WillBeHeapHashCountedSet WTF::HashCountedSet 1167 #define WillBePersistentHeapHashCountedSet WTF::HashCountedSet
|
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
D | InspectorCSSAgent.h | 173 void collectPlatformFontsForRenderer(RenderText*, HashCountedSet<String>*);
|
D | InspectorCSSAgent.cpp | 749 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()
|