Home | History | Annotate | Download | only in dom2dtm

Lines Matching refs:m_root

87   transient private Node m_root;
93 /** true if ALL the nodes in the m_root subtree have been processed;
127 m_pos=m_root = domSource.getNode();
130 m_last_kid=addNode(m_root, m_last_parent,m_last_kid, NULL);
143 if(ELEMENT_NODE == m_root.getNodeType())
145 NamedNodeMap attrs=m_root.getAttributes();
708 // This would be easier if m_root was always the Document node, but
710 if((m_root==node) ||
711 (m_root.getNodeType()==DOCUMENT_NODE &&
712 m_root==node.getOwnerDocument()) ||
713 (m_root.getNodeType()!=DOCUMENT_NODE &&
714 m_root.getOwnerDocument()==node.getOwnerDocument())
717 // If node _is_ in m_root's tree, find its handle
729 if(cursor==m_root)
733 } // if node and m_root in same Document
1279 if (m_root.getNodeType() == Node.DOCUMENT_NODE)
1280 doc = (Document) m_root;
1282 doc = m_root.getOwnerDocument();
1310 if (m_root.getNodeType() == Node.DOCUMENT_NODE)
1311 doc = (Document) m_root;
1313 doc = m_root.getOwnerDocument();
1348 Document doc = (m_root.getNodeType() == Node.DOCUMENT_NODE)
1349 ? (Document) m_root : m_root.getOwnerDocument();
1417 Document doc = (m_root.getNodeType() == Node.DOCUMENT_NODE)
1418 ? (Document) m_root : m_root.getOwnerDocument();