Searched refs:CounterNode (Results 1 – 17 of 17) sorted by relevance
/external/chromium_org/third_party/WebKit/Source/core/rendering/ |
D | CounterNode.h | 43 class CounterNode : public RefCounted<CounterNode> { 45 static PassRefPtr<CounterNode> create(RenderObject&, bool isReset, int value); 46 ~CounterNode(); 58 CounterNode* parent() const { return m_parent; } in parent() 59 CounterNode* previousSibling() const { return m_previousSibling; } in previousSibling() 60 CounterNode* nextSibling() const { return m_nextSibling; } in nextSibling() 61 CounterNode* firstChild() const { return m_firstChild; } in firstChild() 62 CounterNode* lastChild() const { return m_lastChild; } in lastChild() 63 CounterNode* lastDescendant() const; 64 CounterNode* previousInPreOrder() const; [all …]
|
D | CounterNode.cpp | 33 CounterNode::CounterNode(RenderObject& o, bool hasResetType, int value) in CounterNode() function in blink::CounterNode 47 CounterNode::~CounterNode() in ~CounterNode() 52 CounterNode* oldParent = 0; in ~CounterNode() 53 CounterNode* oldPreviousSibling = 0; in ~CounterNode() 76 for (CounterNode* child = m_firstChild; child; ) { in ~CounterNode() 77 CounterNode* nextChild = child->m_nextSibling; in ~CounterNode() 78 CounterNode* nextSibling = 0; in ~CounterNode() 95 PassRefPtr<CounterNode> CounterNode::create(RenderObject& owner, bool hasResetType, int value) in create() 97 return adoptRef(new CounterNode(owner, hasResetType, value)); in create() 100 CounterNode* CounterNode::nextInPreOrderAfterChildren(const CounterNode* stayWithin) const in nextInPreOrderAfterChildren() [all …]
|
D | RenderCounter.cpp | 44 typedef HashMap<AtomicString, RefPtr<CounterNode> > CounterMap; 47 static CounterNode* makeCounterNode(RenderObject&, const AtomicString& identifier, bool alwaysCreat… 182 …r, const AtomicString& identifier, bool isReset, RefPtr<CounterNode>& parent, RefPtr<CounterNode>&… in findPlaceForCounter() 192 RefPtr<CounterNode> previousSiblingProtector = nullptr; in findPlaceForCounter() 195 CounterNode* currentCounter = makeCounterNode(*currentRenderer, identifier, false); in findPlaceForCounter() 295 static CounterNode* makeCounterNode(RenderObject& object, const AtomicString& identifier, bool alwa… in makeCounterNode() 299 if (CounterNode* node = nodeMap->get(identifier)) in makeCounterNode() 309 RefPtr<CounterNode> newParent = nullptr; in makeCounterNode() 310 RefPtr<CounterNode> newPreviousSibling = nullptr; in makeCounterNode() 311 RefPtr<CounterNode> newNode = CounterNode::create(object, isReset, value); in makeCounterNode() [all …]
|
D | RenderCounter.h | 30 class CounterNode; variable 59 CounterNode* m_counterNode; 61 friend class CounterNode; variable
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_rendering.target.darwin-mips.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | webcore_rendering.target.linux-arm64.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | webcore_rendering.target.darwin-mips64.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | webcore_rendering.target.linux-mips.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | webcore_rendering.target.darwin-x86_64.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | webcore_rendering.target.linux-x86_64.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | webcore_rendering.target.linux-mips64.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | webcore_rendering.target.darwin-arm64.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | webcore_rendering.target.darwin-x86.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | webcore_rendering.target.darwin-arm.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | webcore_rendering.target.linux-x86.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | webcore_rendering.target.linux-arm.mk | 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
|
D | core.gypi | 1560 'rendering/CounterNode.cpp', 1561 'rendering/CounterNode.h',
|