Home
last modified time | relevance | path

Searched refs:CounterNode (Results 1 – 17 of 17) sorted by relevance

/external/chromium_org/third_party/WebKit/Source/core/rendering/
DCounterNode.h43 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 …]
DCounterNode.cpp33 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 …]
DRenderCounter.cpp44 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 …]
DRenderCounter.h30 class CounterNode; variable
59 CounterNode* m_counterNode;
61 friend class CounterNode; variable
/external/chromium_org/third_party/WebKit/Source/core/
Dwebcore_rendering.target.darwin-mips.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dwebcore_rendering.target.linux-arm64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dwebcore_rendering.target.darwin-mips64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dwebcore_rendering.target.linux-mips.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dwebcore_rendering.target.darwin-x86_64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dwebcore_rendering.target.linux-x86_64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dwebcore_rendering.target.linux-mips64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dwebcore_rendering.target.darwin-arm64.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dwebcore_rendering.target.darwin-x86.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dwebcore_rendering.target.darwin-arm.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dwebcore_rendering.target.linux-x86.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dwebcore_rendering.target.linux-arm.mk31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
Dcore.gypi1560 'rendering/CounterNode.cpp',
1561 'rendering/CounterNode.h',