/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
PaintInfo.h | 37 #include "wtf/ListHashSet.h" 54 RenderObject* newPaintingRoot = 0, ListHashSet<RenderInline*>* newOutlineObjects = 0, 111 ListHashSet<RenderInline*>* outlineObjects() { return m_outlineObjects; } 112 void setOutlineObjects(ListHashSet<RenderInline*>* objects) { m_outlineObjects = objects; } 123 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" 47 typedef ListHashSet<RenderMultiColumnSet*> RenderMultiColumnSetList; 179 ListHashSet<const RenderObject*> m_statePusherObjectsStack;
|
FloatingObjects.h | 30 #include "wtf/ListHashSet.h" 129 typedef ListHashSet<OwnPtr<FloatingObject>, 4, FloatingObjectHashFunctions> FloatingObjectSet;
|
RenderBlock.h | 35 #include "wtf/ListHashSet.h" 49 typedef WTF::ListHashSet<RenderBox*, 16> TrackedRendererListHashSet; 56 typedef WTF::HashMap<RenderBlock*, OwnPtr<ListHashSet<RenderInline*> > > ContinuationOutlineTableMap;
|
RenderLineBoxList.cpp | 255 ListHashSet<RenderObject*, 16> potentialLineBreakObjects;
|
RenderBlock.cpp | [all...] |
/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/paint/ |
LineBoxListPainter.cpp | 35 ListHashSet<RenderInline*> outlineObjects; 49 ListHashSet<RenderInline*>::iterator end = info.outlineObjects()->end(); 50 for (ListHashSet<RenderInline*>::iterator it = info.outlineObjects()->begin(); it != end; ++it) {
|
BlockPainter.cpp | 478 OwnPtr<ListHashSet<RenderInline*> > continuations = table->take(&m_renderBlock); 484 ListHashSet<RenderInline*>::iterator end = continuations->end(); 485 for (ListHashSet<RenderInline*>::iterator it = continuations->begin(); it != end; ++it) {
|
/external/chromium_org/third_party/WebKit/Source/core/page/ |
PageSerializer.h | 37 #include "wtf/ListHashSet.h" 86 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;
|
DataTransfer.cpp | 191 ListHashSet<String> typesSet = m_dataObject->types();
|
/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/dom/ |
StyleEngine.h | 38 #include "wtf/ListHashSet.h" 199 typedef ListHashSet<TreeScope*, 16> TreeScopeSet;
|
/external/chromium_org/third_party/WebKit/Source/core/fetch/ |
ResourceFetcher.h | 40 #include "wtf/ListHashSet.h" 214 OwnPtr<ListHashSet<Resource*> > m_preloads;
|
ResourceFetcher.cpp | [all...] |
/external/chromium_org/third_party/WebKit/Source/core/inspector/ |
InspectorPageAgent.cpp | 80 #include "wtf/ListHashSet.h" 604 static PassRefPtr<TypeBuilder::Array<TypeBuilder::Page::Cookie> > buildArrayForCookies(ListHashSet<Cookie>& cookiesList) 608 ListHashSet<Cookie>::iterator end = cookiesList.end(); 609 ListHashSet<Cookie>::iterator it = cookiesList.begin(); 691 ListHashSet<Cookie> rawCookiesList; [all...] |
/external/chromium_org/third_party/WebKit/Source/platform/heap/ |
Heap.h | 42 #include "wtf/ListHashSet.h" [all...] |
Handle.h | [all...] |
HeapTest.cpp | [all...] |