Searched refs:CounterNode (Results 1 - 5 of 5) sorted by relevance

/external/webkit/Source/WebCore/rendering/
H A DCounterNode.h43 class CounterNode : public RefCounted<CounterNode> { class in namespace:WebCore
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* lastDescendan
[all...]
H A DCounterNode.cpp23 #include "CounterNode.h"
31 CounterNode::CounterNode(RenderObject* o, bool hasResetType, int value) function in class:WebCore::CounterNode
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
[all...]
H A DRenderCounter.h30 class CounterNode;
50 // Removes the reference to the CounterNode associated with this renderer.
51 // This is used to cause a counter display update when the CounterNode tree changes.
55 CounterNode* m_counterNode;
57 friend class CounterNode;
H A DRenderCounter.cpp25 #include "CounterNode.h"
39 typedef HashMap<RefPtr<AtomicStringImpl>, RefPtr<CounterNode> > CounterMap;
42 static CounterNode* makeCounterNode(RenderObject*, const AtomicString& identifier, bool alwaysCreateCounter);
277 // identifier in the CounterNode tree for identifier and sets parent and
292 static bool findPlaceForCounter(RenderObject* counterOwner, const AtomicString& identifier, bool isReset, CounterNode*& parent, CounterNode*& previousSibling)
303 CounterNode* currentCounter = makeCounterNode(currentRenderer, identifier, false);
393 static CounterNode* makeCounterNode(RenderObject* object, const AtomicString& identifier, bool alwaysCreateCounter)
399 if (CounterNode* node = nodeMap->get(identifier.impl()).get())
409 CounterNode* newParen
[all...]
/external/webkit/Source/WebCore/
H A DAndroid.mk842 rendering/CounterNode.cpp \

Completed in 466 milliseconds