Lines Matching refs:m_domNode
38 private Node m_domNode; field in AdapterNode
62 return m_domNode; in getNode()
70 m_domNode = node; in AdapterNode()
82 if (child.m_domNode == n.m_domNode) return i; in index()
89 if (m_domNode == null) return null; in child()
95 m_domNode.getChildNodes().item(searchIndex); in child()
104 if (m_domNode != null) in childCount()
106 rc = m_domNode.getChildNodes().getLength(); in childCount()
119 if (m_domNode != null) in toString()
121 String s = typeName[m_domNode.getNodeType()]; in toString()
122 String nodeName = m_domNode.getNodeName(); in toString()
129 if (m_domNode.getNodeValue() != null) in toString()
140 String t = m_domNode.getNodeValue(); in toString()
144 if (m_domNode.getNodeType() == ELEMENT_TYPE) in toString()
146 NamedNodeMap attrs = m_domNode.getAttributes(); in toString()