Home
last modified time | relevance | path

Searched refs:m_rootNode (Results 1 – 8 of 8) sorted by relevance

/external/webkit/Source/WebCore/dom/
DDynamicNodeList.cpp32 : m_rootNode(rootNode) in DynamicNodeList()
36 m_rootNode->registerDynamicNodeList(this); in DynamicNodeList()
40 : m_rootNode(rootNode) in DynamicNodeList()
44 m_rootNode->registerDynamicNodeList(this); in DynamicNodeList()
49 m_rootNode->unregisterDynamicNodeList(this); in ~DynamicNodeList()
59 for (Node* n = m_rootNode->firstChild(); n; n = n->traverseNextNode(m_rootNode.get())) in length()
71 for (Node* n = start; n; n = n->traverseNextNode(m_rootNode.get())) { in itemForwardsFromCurrent()
89 for (Node* n = start; n; n = n->traversePreviousNode(m_rootNode.get())) { in itemBackwardsFromCurrent()
107 Node* start = m_rootNode->firstChild(); in item()
124 if (m_rootNode->isDocumentNode() || m_rootNode->inDocument()) { in itemWithName()
[all …]
DChildNodeList.cpp41 for (Node* n = m_rootNode->firstChild(); n; n = n->nextSibling()) in length()
53 Node* n = m_rootNode->firstChild(); in item()
74 n = m_rootNode->lastChild(); in item()
106 return testNode->parentNode() == m_rootNode; in nodeMatches()
DClassNodeList.cpp40 , m_classNames(classNames, m_rootNode->document()->inQuirksMode()) in ClassNodeList()
47 m_rootNode->removeCachedClassNodeList(this, m_originalClassNames); in ~ClassNodeList()
DDynamicNodeList.h63 Node* rootNode() const { return m_rootNode.get(); } in rootNode()
71 RefPtr<Node> m_rootNode; variable
DNameNodeList.cpp42 m_rootNode->removeCachedNameNodeList(this, m_nodeName); in ~NameNodeList()
DTagNodeList.cpp42 m_rootNode->removeCachedTagNodeList(this, QualifiedName(nullAtom, m_localName, m_namespaceURI)); in ~TagNodeList()
/external/webkit/Source/WebCore/html/parser/
DHTMLElementStack.cpp163 : m_rootNode(0) in HTMLElementStack()
183 ASSERT(m_rootNode); in secondElementIsHTMLBodyElement()
206 m_rootNode = 0; in popAll()
297 ASSERT(!m_rootNode); in pushRootNodeCommon()
298 m_rootNode = rootNode.get(); in pushRootNodeCommon()
323 ASSERT(m_rootNode); in push()
335 ASSERT(m_rootNode); in insertAbove()
530 ASSERT(m_rootNode); in htmlElement()
531 return toElement(m_rootNode); in htmlElement()
548 ASSERT(m_rootNode); in rootNode()
[all …]
DHTMLElementStack.h167 ContainerNode* m_rootNode; variable