HomeSort by relevance Sort by last modified time
    Searched refs:HashCountedSet (Results 1 - 23 of 23) sorted by null

  /external/chromium_org/third_party/WebKit/Source/wtf/
HashCountedSet.h 37 typename Allocator = DefaultAllocator > class HashCountedSet {
38 WTF_USE_ALLOCATOR(HashCountedSet, Allocator);
47 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)
127 typedef typename HashCountedSet<T, U, V, W>::const_iterator iterator
    [all...]
RefCountedLeakCounter.cpp 27 #include "wtf/HashCountedSet.h"
48 typedef HashCountedSet<const char*, PtrHash<const char*> > ReasonSet;
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceClientWalker.h 29 #include "wtf/HashCountedSet.h"
38 ResourceClientWalker(const HashCountedSet<ResourceClient*>& set)
41 typedef HashCountedSet<ResourceClient*>::const_iterator Iterator;
62 const HashCountedSet<ResourceClient*>& m_clientSet;
Resource.h 32 #include "wtf/HashCountedSet.h"
283 HashCountedSet<ResourceClient*> m_clients;
284 HashCountedSet<ResourceClient*> m_clientsAwaitingCallback;
Resource.cpp 682 HashCountedSet<ResourceClient*>::iterator end2 = m_clients.end();
683 for (HashCountedSet<ResourceClient*>::iterator it = m_clients.begin(); it != end2; ++it) {
  /external/chromium_org/third_party/WebKit/Source/core/html/
HTMLDocument.h 28 #include "wtf/HashCountedSet.h"
86 void addItemToMap(HashCountedSet<AtomicString>&, const AtomicString&);
87 void removeItemFromMap(HashCountedSet<AtomicString>&, const AtomicString&);
89 HashCountedSet<AtomicString> m_namedItemCounts;
90 HashCountedSet<AtomicString> m_extraNamedItemCounts;
HTMLFrameOwnerElement.h 27 #include "wtf/HashCountedSet.h"
124 static HashCountedSet<Node*>& disabledSubtreeRoots()
126 DEFINE_STATIC_LOCAL(HashCountedSet<Node*>, nodes, ());
HTMLDocument.cpp 170 void HTMLDocument::addItemToMap(HashCountedSet<AtomicString>& map, const AtomicString& name)
179 void HTMLDocument::removeItemFromMap(HashCountedSet<AtomicString>& map, const AtomicString& name)
  /external/chromium_org/third_party/WebKit/Source/core/dom/
CSSSelectorWatch.h 37 #include "wtf/HashCountedSet.h"
70 HashCountedSet<String> m_matchingCallbackSelectors;
CSSSelectorWatch.cpp 106 HashCountedSet<String>::AddResult result = m_matchingCallbackSelectors.add(selector);
Document.h 199 typedef HashCountedSet<Node*> TouchEventTargetSet;
    [all...]
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
trace_collections.h 32 HashCountedSet<Member<HeapObject>, void, HeapAllocator> m_wtfCountedSet;
  /external/chromium_org/third_party/WebKit/Source/core/css/
CSSImageGeneratorValue.h 31 #include "wtf/HashCountedSet.h"
79 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/
EventHandlerRegistry.h 10 #include "wtf/HashCountedSet.h"
14 typedef HashCountedSet<EventTarget*> EventTargetSet;
LocalDOMWindow.cpp 170 typedef HashCountedSet<LocalDOMWindow*> DOMWindowSet;
    [all...]
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/heap/
stubs.h 108 class HashCountedSet {};
198 class HeapHashCountedSet : public HashCountedSet<T, void, void, HeapAllocator> {
  /external/chromium_org/third_party/WebKit/Source/core/inspector/
InspectorConsoleAgent.h 35 #include "wtf/HashCountedSet.h"
116 HashCountedSet<String> m_counts;
InspectorCSSAgent.h 35 #include "wtf/HashCountedSet.h"
172 void collectPlatformFontsForRenderer(RenderText*, HashCountedSet<String>*);
InspectorConsoleAgent.cpp 246 HashCountedSet<String>::AddResult result = m_counts.add(identifier);
InspectorCSSAgent.cpp 707 void InspectorCSSAgent::collectPlatformFontsForRenderer(RenderText* renderer, HashCountedSet<String>* fontStats)
746 HashCountedSet<String> fontStats;
763 for (HashCountedSet<String>::iterator it = fontStats.begin(), end = fontStats.end(); it != end; ++it) {
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Visitor.h 39 #include "wtf/HashCountedSet.h"
319 void trace(const HashCountedSet<T, U, V>& set)
321 OffHeapCollectionTraceTrait<HashCountedSet<T, U, V> >::trace(this, set);
580 struct OffHeapCollectionTraceTrait<WTF::HashCountedSet<T, U, V> > {
581 typedef WTF::HashCountedSet<T, U, V> Set;
Heap.h 40 #include "wtf/HashCountedSet.h"
    [all...]
Handle.h     [all...]

Completed in 408 milliseconds