HomeSort by relevance Sort by last modified time
    Searched refs:CounterNode (Results 1 - 14 of 14) sorted by null

  /external/chromium_org/third_party/WebKit/Source/core/rendering/
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; }
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* lastDescendant() const
    [all...]
CounterNode.cpp 23 #include "core/rendering/CounterNode.h"
33 CounterNode::CounterNode(RenderObject& o, bool hasResetType, int value)
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* nextSibling = 0
    [all...]
RenderCounter.h 30 class CounterNode;
53 // Removes the reference to the CounterNode associated with this renderer.
54 // This is used to cause a counter display update when the CounterNode tree changes.
58 CounterNode* m_counterNode;
60 friend class CounterNode;
RenderCounter.cpp 30 #include "core/rendering/CounterNode.h"
45 typedef HashMap<AtomicString, RefPtr<CounterNode> > CounterMap;
48 static CounterNode* makeCounterNode(RenderObject&, const AtomicString& identifier, bool alwaysCreateCounter);
168 // identifier in the CounterNode tree for identifier and sets parent and
183 static bool findPlaceForCounter(RenderObject& counterOwner, const AtomicString& identifier, bool isReset, RefPtr<CounterNode>& parent, RefPtr<CounterNode>& previousSibling)
193 RefPtr<CounterNode> previousSiblingProtector = nullptr;
196 CounterNode* currentCounter = makeCounterNode(*currentRenderer, identifier, false);
296 static CounterNode* makeCounterNode(RenderObject& object, const AtomicString& identifier, bool alwaysCreateCounter)
300 if (CounterNode* node = nodeMap->get(identifier)
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/
webcore_rendering.target.darwin-arm.mk 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
webcore_rendering.target.darwin-arm64.mk 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
webcore_rendering.target.darwin-mips.mk 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
webcore_rendering.target.darwin-x86.mk 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
webcore_rendering.target.darwin-x86_64.mk 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
webcore_rendering.target.linux-arm.mk 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
webcore_rendering.target.linux-arm64.mk 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
webcore_rendering.target.linux-mips.mk 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
webcore_rendering.target.linux-x86.mk 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \
webcore_rendering.target.linux-x86_64.mk 31 third_party/WebKit/Source/core/rendering/CounterNode.cpp \

Completed in 209 milliseconds