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

  /external/webkit/Source/WebCore/rendering/
CounterNode.cpp 23 #include "CounterNode.h"
31 CounterNode::CounterNode(RenderObject* o, bool hasResetType, int value)
45 CounterNode::~CounterNode()
50 PassRefPtr<CounterNode> CounterNode::create(RenderObject* owner, bool hasResetType, int value)
52 return adoptRef(new CounterNode(owner, hasResetType, value));
55 CounterNode* CounterNode::nextInPreOrderAfterChildren(const CounterNode* stayWithin) cons
    [all...]
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...]

Completed in 34 milliseconds