HomeSort by relevance Sort by last modified time
    Searched refs:ListHashSet (Results 1 - 25 of 33) sorted by null

1 2

  /external/chromium_org/third_party/WebKit/Source/core/dom/
DocumentOrderedList.h 32 #include "wtf/ListHashSet.h"
50 typedef ListHashSet<Node*, 32>::iterator iterator;
56 ListHashSet<Node*, 32> m_nodes;
StyleSheetScopingNodeList.h 33 #include "wtf/ListHashSet.h"
58 ListHashSet<Node*, 4>* scopingNodesRemoved() { return m_scopingNodesRemoved.get(); }
62 OwnPtr<ListHashSet<Node*, 4> > m_scopingNodesRemoved;
StyleSheetScopingNodeList.cpp 61 m_scopingNodesRemoved = adoptPtr(new ListHashSet<Node*, 4>());
TreeScopeStyleSheetCollection.h 38 #include "wtf/ListHashSet.h"
63 ListHashSet<Node*, 4>* scopingNodesRemoved() { return m_scopingNodesForStyleScoped.scopingNodesRemoved(); }
TreeScopeStyleSheetCollection.cpp 212 if (ListHashSet<Node*, 4>* removedNodes = scopingNodesRemoved()) {
213 for (ListHashSet<Node*, 4>::iterator it = removedNodes->begin(); it != removedNodes->end(); ++it)
StyleEngine.h 38 #include "wtf/ListHashSet.h"
197 typedef ListHashSet<TreeScope*, 16> TreeScopeSet;
  /external/chromium_org/third_party/WebKit/Source/core/rendering/
PaintInfo.h 36 #include "wtf/ListHashSet.h"
53 RenderObject* newPaintingRoot = 0, ListHashSet<RenderInline*>* newOutlineObjects = 0,
107 ListHashSet<RenderInline*>* outlineObjects() { return m_outlineObjects; }
108 void setOutlineObjects(ListHashSet<RenderInline*>* objects) { m_outlineObjects = objects; }
121 ListHashSet<RenderInline*>* m_outlineObjects; // used to list outlines that should be painted by a block with inline children
RenderFlowThread.h 36 #include "wtf/ListHashSet.h"
46 typedef ListHashSet<RenderRegion*> RenderRegionList;
187 ListHashSet<const RenderObject*> m_statePusherObjectsStack;
RenderLineBoxList.cpp 214 ListHashSet<RenderInline*> outlineObjects;
228 ListHashSet<RenderInline*>::iterator end = info.outlineObjects()->end();
229 for (ListHashSet<RenderInline*>::iterator it = info.outlineObjects()->begin(); it != end; ++it) {
FloatingObjects.h 30 #include "wtf/ListHashSet.h"
129 typedef ListHashSet<OwnPtr<FloatingObject>, 4, FloatingObjectHashFunctions> FloatingObjectSet;
  /external/chromium_org/third_party/WebKit/Source/wtf/
ListHashSet.h 32 // ListHashSet: Just like HashSet, this class provides a Set
39 // guaranteed safe against mutation of the ListHashSet, except for
42 template<typename Value, size_t inlineCapacity, typename HashFunctions, typename Allocator> class ListHashSet;
56 // Don't declare a destructor for HeapAllocated ListHashSet.
74 // Note that for a ListHashSet you cannot specify the HashTraits as a
77 template<typename ValueArg, size_t inlineCapacity = 256, typename HashArg = typename DefaultHash<ValueArg>::Hash, typename AllocatorArg = ListHashSetAllocator<ValueArg, inlineCapacity> > class ListHashSet
78 : public ListHashSetDestructorBase<ListHashSet<ValueArg, inlineCapacity, HashArg, AllocatorArg>, AllocatorArg, AllocatorArg::isGarbageCollected> {
80 WTF_USE_ALLOCATOR(ListHashSet, Allocator);
100 typedef ListHashSetIterator<ListHashSet> iterator;
101 typedef ListHashSetConstIterator<ListHashSet> const_iterator
    [all...]
ListHashSetTest.cpp 29 #include "wtf/ListHashSet.h"
68 removeFirstHelper<ListHashSet<int> >();
69 removeFirstHelper<ListHashSet<int, 1> >();
102 appendOrMoveToLastNewItems<ListHashSet<int> >();
103 appendOrMoveToLastNewItems<ListHashSet<int, 1> >();
153 appendOrMoveToLastWithDuplicates<ListHashSet<int> >();
154 appendOrMoveToLastWithDuplicates<ListHashSet<int, 1> >();
187 prependOrMoveToFirstNewItems<ListHashSet<int> >();
188 prependOrMoveToFirstNewItems<ListHashSet<int, 1> >();
238 prependOrMoveToLastWithDuplicates<ListHashSet<int> >()
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/css/
FontFaceCache.h 33 #include "wtf/ListHashSet.h"
61 const ListHashSet<RefPtrWillBeMember<FontFace> >& cssConnectedFontFaces() const { return m_cssConnectedFontFaces; }
76 ListHashSet<RefPtrWillBeMember<FontFace> > m_cssConnectedFontFaces;
FontFaceSet.h 147 const ListHashSet<RefPtrWillBeMember<FontFace> >& cssConnectedFontFaceList() const;
156 ListHashSet<RefPtrWillBeMember<FontFace> > m_nonCSSConnectedFaces;
FontFaceSet.cpp 165 for (ListHashSet<RefPtrWillBeMember<FontFace> >::iterator it = m_nonCSSConnectedFaces.begin(); it != m_nonCSSConnectedFaces.end(); ++it)
310 for (ListHashSet<RefPtrWillBeMember<FontFace> >::iterator it = m_nonCSSConnectedFaces.begin(); it != m_nonCSSConnectedFaces.end(); ++it) {
327 ListHashSet<RefPtrWillBeMember<FontFace> >::iterator it = m_nonCSSConnectedFaces.find(fontFace);
353 const ListHashSet<RefPtrWillBeMember<FontFace> >& FontFaceSet::cssConnectedFontFaceList() const
379 const ListHashSet<RefPtrWillBeMember<FontFace> >& cssConnectedFaces = cssConnectedFontFaceList();
382 for (ListHashSet<RefPtrWillBeMember<FontFace> >::const_iterator it = cssConnectedFaces.begin(); it != cssConnectedFaces.end(); ++it)
384 for (ListHashSet<RefPtrWillBeMember<FontFace> >::const_iterator it = m_nonCSSConnectedFaces.begin(); it != m_nonCSSConnectedFaces.end(); ++it)
  /external/chromium_org/third_party/WebKit/Source/core/page/
PageSerializer.h 37 #include "wtf/ListHashSet.h"
88 ListHashSet<KURL> m_resourceURLs;
  /external/chromium_org/third_party/WebKit/Source/platform/fonts/
FontDataCache.h 37 #include "wtf/ListHashSet.h"
94 ListHashSet<RefPtr<SimpleFontData> > m_inactiveFontData;
FontDataCache.cpp 129 ListHashSet<RefPtr<SimpleFontData> >::iterator end = m_inactiveFontData.end();
130 ListHashSet<RefPtr<SimpleFontData> >::iterator it = m_inactiveFontData.begin();
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/
trace_collections.h 26 ListHashSet<Member<HeapObject>, void, HeapAllocator> m_wtfListSet;
  /external/chromium_org/third_party/WebKit/Source/core/clipboard/
DataObject.cpp 49 ListHashSet<String> types;
52 for (ListHashSet<String>::const_iterator it = types.begin(); it != types.end(); ++it) {
127 ListHashSet<String> DataObject::types() const
129 ListHashSet<String> results;
DataObject.h 38 #include "wtf/ListHashSet.h"
76 ListHashSet<String> types() const;
  /external/chromium_org/third_party/WebKit/Source/platform/heap/
Visitor.h 45 #include "wtf/ListHashSet.h"
301 void trace(const ListHashSet<T, inlineCapacity, U>& hashSet)
303 OffHeapCollectionTraceTrait<ListHashSet<T, inlineCapacity, U> >::trace(this, hashSet);
503 struct OffHeapCollectionTraceTrait<ListHashSet<T, inlineCapacity, HashFunctions> > {
504 typedef WTF::ListHashSet<T, inlineCapacity, HashFunctions> ListHashSet;
506 static void trace(Visitor* visitor, const ListHashSet& set)
510 ListHashSet& iterSet = const_cast<ListHashSet&>(set);
511 for (typename ListHashSet::iterator it = iterSet.begin(), end = iterSet.end(); it != end; ++it
    [all...]
  /external/chromium_org/tools/clang/blink_gc_plugin/tests/heap/
stubs.h 94 class ListHashSet {};
191 class HeapListHashSet : public ListHashSet<T, void, void, HeapAllocator> { };
  /external/chromium_org/third_party/WebKit/Source/core/fetch/
ResourceFetcher.h 40 #include "wtf/ListHashSet.h"
216 OwnPtr<ListHashSet<Resource*> > m_preloads;
ResourceFetcher.cpp     [all...]

Completed in 303 milliseconds

1 2