Searched refs:CounterNode (Results 1 - 16 of 16) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
H A DCounterNode.h43 class CounterNode : public RefCounted<CounterNode> { class in namespace:blink
45 static PassRefPtr<CounterNode> create(RenderObject&, bool isReset, int value);
46 ~CounterNode();
58 CounterNode* parent() const { return m_parent; }
59 CounterNode* previousSibling() const { return m_previousSibling; }
60 CounterNode* nextSibling() const { return m_nextSibling; }
61 CounterNode* firstChild() const { return m_firstChild; }
62 CounterNode* lastChild() const { return m_lastChild; }
63 CounterNode* lastDescendan
[all...]
H A DCounterNode.cpp23 #include "core/rendering/CounterNode.h"
33 CounterNode::CounterNode(RenderObject& o, bool hasResetType, int value) function in class:blink::CounterNode
47 CounterNode::~CounterNode()
52 CounterNode* oldParent = 0;
53 CounterNode* oldPreviousSibling = 0;
76 for (CounterNode* child = m_firstChild; child; ) {
77 CounterNode* nextChild = child->m_nextSibling;
78 CounterNode* nextSiblin
[all...]
H A DRenderCounter.h30 class CounterNode;
54 // Removes the reference to the CounterNode associated with this renderer.
55 // This is used to cause a counter display update when the CounterNode tree changes.
59 CounterNode* m_counterNode;
61 friend class CounterNode;
H A DRenderCounter.cpp29 #include "core/rendering/CounterNode.h"
44 typedef HashMap<AtomicString, RefPtr<CounterNode> > CounterMap;
47 static CounterNode* makeCounterNode(RenderObject&, const AtomicString& identifier, bool alwaysCreateCounter);
167 // identifier in the CounterNode tree for identifier and sets parent and
182 static bool findPlaceForCounter(RenderObject& counterOwner, const AtomicString& identifier, bool isReset, RefPtr<CounterNode>& parent, RefPtr<CounterNode>& previousSibling)
192 RefPtr<CounterNode> previousSiblingProtector = nullptr;
195 CounterNode* currentCounter = makeCounterNode(*currentRenderer, identifier, false);
295 static CounterNode* makeCounterNode(RenderObject& object, const AtomicString& identifier, bool alwaysCreateCounter)
299 if (CounterNode* nod
[all...]
/external/chromium_org/third_party/WebKit/Source/core/
H A Dwebcore_rendering.target.darwin-arm.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
H A Dwebcore_rendering.target.darwin-arm64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
H A Dwebcore_rendering.target.darwin-mips.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
H A Dwebcore_rendering.target.darwin-mips64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
H A Dwebcore_rendering.target.darwin-x86.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
H A Dwebcore_rendering.target.darwin-x86_64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
H A Dwebcore_rendering.target.linux-arm.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
H A Dwebcore_rendering.target.linux-arm64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
H A Dwebcore_rendering.target.linux-mips.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
H A Dwebcore_rendering.target.linux-mips64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
H A Dwebcore_rendering.target.linux-x86.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
H A Dwebcore_rendering.target.linux-x86_64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \

Completed in 480 milliseconds