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

  /external/webkit/WebCore/rendering/
CounterNode.h 41 class CounterNode : public Noncopyable {
43 CounterNode(RenderObject*, bool isReset, int value);
51 CounterNode* parent() const { return m_parent; }
52 CounterNode* previousSibling() const { return m_previousSibling; }
53 CounterNode* nextSibling() const { return m_nextSibling; }
54 CounterNode* firstChild() const { return m_firstChild; }
55 CounterNode* lastChild() const { return m_lastChild; }
56 CounterNode* lastDescendant() const;
57 CounterNode* previousInPreOrder() const;
58 CounterNode* nextInPreOrder(const CounterNode* stayWithin = 0) const
    [all...]
CounterNode.cpp 23 #include "CounterNode.h"
31 CounterNode::CounterNode(RenderObject* o, bool hasResetType, int value)
44 CounterNode* CounterNode::nextInPreOrderAfterChildren(const CounterNode* stayWithin) const
49 const CounterNode* current = this;
50 CounterNode* next;
59 CounterNode* CounterNode::nextInPreOrder(const CounterNode* stayWithin) cons
    [all...]
RenderCounter.h 30 class CounterNode;
36 // Removes the reference to the CounterNode associated with this renderer
38 // This is used to cause a counter display update when the CounterNode
55 mutable CounterNode* m_counterNode;
RenderCounter.cpp 25 #include "CounterNode.h"
38 typedef HashMap<RefPtr<AtomicStringImpl>, CounterNode*> CounterMap;
41 static CounterNode* makeCounterNode(RenderObject*, const AtomicString& identifier, bool alwaysCreateCounter);
113 // identifier in the CounterNode tree for identifier and sets parent and
128 static bool findPlaceForCounter(RenderObject* counterOwner, const AtomicString& identifier, bool isReset, CounterNode*& parent, CounterNode*& previousSibling)
139 CounterNode* currentCounter = makeCounterNode(currentRenderer, identifier, false);
229 static CounterNode* makeCounterNode(RenderObject* object, const AtomicString& identifier, bool alwaysCreateCounter)
235 if (CounterNode* node = nodeMap->get(identifier.impl()))
243 CounterNode* newParent = 0
    [all...]
  /external/webkit/WebCore/
Android.mk 587 rendering/CounterNode.cpp \

Completed in 108 milliseconds