Searched refs:CounterNode (Results 1 – 11 of 11) 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 WebCore::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 | 45 typedef HashMap<AtomicString, RefPtr<CounterNode> > CounterMap; 48 static CounterNode* makeCounterNode(RenderObject&, const AtomicString& identifier, bool alwaysCreat… 183 …r, const AtomicString& identifier, bool isReset, RefPtr<CounterNode>& parent, RefPtr<CounterNode>&… in findPlaceForCounter() 193 RefPtr<CounterNode> previousSiblingProtector = 0; in findPlaceForCounter() 196 CounterNode* currentCounter = makeCounterNode(*currentRenderer, identifier, false); in findPlaceForCounter() 296 static CounterNode* makeCounterNode(RenderObject& object, const AtomicString& identifier, bool alwa… in makeCounterNode() 300 if (CounterNode* node = nodeMap->get(identifier)) in makeCounterNode() 310 RefPtr<CounterNode> newParent = 0; in makeCounterNode() 311 RefPtr<CounterNode> newPreviousSibling = 0; in makeCounterNode() 312 RefPtr<CounterNode> newNode = CounterNode::create(object, isReset, value); in makeCounterNode() [all …]
|
D | RenderCounter.h | 30 class CounterNode; variable 58 CounterNode* m_counterNode; 60 friend class CounterNode; variable
|
/external/chromium_org/third_party/WebKit/Source/core/ |
D | webcore_rendering.target.linux-mips.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-mips.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 | 1376 'rendering/CounterNode.cpp', 1377 'rendering/CounterNode.h',
|