HomeSort by relevance Sort by last modified time
    Searched refs:getNodeType (Results 51 - 75 of 254) sorted by null

1 23 4 5 6 7 8 91011

  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
NodeImpl.java 114 public abstract short getNodeType();
164 switch (getNodeType()) {
190 "Unsupported node type " + getNodeType());
244 switch (node.getNodeType()) {
268 "Cannot rename nodes of type " + node.getNodeType());
289 switch (node.getNodeType()) {
304 "Cannot rename nodes of type " + node.getNodeType());
309 switch (getNodeType()) {
365 "Unsupported node type " + getNodeType());
405 switch (getNodeType()) {
    [all...]
ProcessingInstructionImpl.java 56 public short getNodeType() {
InnerNodeImpl.java 162 if (node.getNodeType() == Node.TEXT_NODE) {
231 return child.getNodeType() != Node.COMMENT_NODE
232 && child.getNodeType() != Node.PROCESSING_INSTRUCTION_NODE;
237 if (node.getNodeType() == Node.ELEMENT_NODE) {
249 if (node.getNodeType() == Node.ELEMENT_NODE) {
DocumentImpl.java 130 switch (node.getNodeType()) {
155 "Cannot copy node of type " + node.getNodeType());
205 "Unsupported node type " + node.getNodeType());
247 switch (nodeImpl.getNodeType()) {
269 "Cannot adopt nodes of type " + nodeImpl.getNodeType());
273 "Unsupported node type " + node.getNodeType());
305 if (node.getNodeType() == Node.ELEMENT_NODE) {
411 public short getNodeType() {
  /libcore/luni/src/test/java/libcore/xml/
NodeTest.java 56 if (node.getNodeType() == Node.ELEMENT_NODE
57 || node.getNodeType() == Node.DOCUMENT_NODE) {
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiTextValueNode.java 59 if (xml_child.getNodeType() == Node.TEXT_NODE) {
97 if (xml_child.getNodeType() == Node.TEXT_NODE) {
  /external/deqp/framework/common/
tcuTestHierarchyIterator.cpp 107 const TestNodeType nodeType = node->getNodeType();
166 const bool isLeaf = isTestNodeTypeExecutable(node->getNodeType());
198 switch (node->getNodeType())
223 if (node->getNodeType() != NODETYPE_ROOT)
235 switch (node->getNodeType())
tcuTestCase.cpp 95 DE_ASSERT(getTestNodeTypeClass(m_children.front()->getNodeType()) == getTestNodeTypeClass(node->getNodeType()));
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
TreeWalker2Result.java 88 if(DTM.ELEMENT_NODE == m_dtm.getNodeType(node))
109 if (DTM.ELEMENT_NODE == m_dtm.getNodeType(node))
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DTMNodeProxy.java 324 public final short getNodeType()
326 return (short) dtm.getNodeType(node);
337 if (getNodeType() == Node.ATTRIBUTE_NODE)
422 if (dtm.getNodeType(node) == Node.ATTRIBUTE_NODE)
598 switch(dtm.getNodeType(kidhandle))
750 if (DTM.ELEMENT_NODE == retNode.getNodeType())
758 } else if (DTM.DOCUMENT_NODE == retNode.getNodeType()) {
793 if (tempNode.getNodeType() == DTM.ELEMENT_NODE
875 if (DTM.ELEMENT_NODE == retNode.getNodeType())
883 else if(DTM.DOCUMENT_NODE == retNode.getNodeType())
    [all...]
ExtendedType.java 124 public int getNodeType()
  /external/apache-xml/src/main/java/org/apache/xpath/patterns/
ContextMatchStepPattern.java 102 boolean iterRootIsAttr = (dtm.getNodeType(xctxt.getIteratorRoot())
132 && (DTM.ELEMENT_NODE == dtm.getNodeType(relative)))
  /external/apache-xml/src/main/java/org/apache/xml/utils/
PrefixResolverDefault.java 92 && (((type = parent.getNodeType()) == Node.ELEMENT_NODE)
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncLang.java 54 if (DTM.ELEMENT_NODE == dtm.getNodeType(parent))
FuncNamespace.java 53 int t = dtm.getNodeType(context);
  /external/apache-xml/src/main/java/org/apache/xpath/jaxp/
JAXPPrefixResolver.java 97 && (((type = parent.getNodeType()) == Node.ELEMENT_NODE)
  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
cdatasectiongetdata.java 79 nodeType = (int) lastChild.getNodeType();
characterdataappenddatanomodificationallowederr.java 78 nodeType = (int) entReference.getNodeType();
characterdatadeletedatanomodificationallowederr.java 78 nodeType = (int) entReference.getNodeType();
characterdatainsertdatanomodificationallowederr.java 78 nodeType = (int) entReference.getNodeType();
characterdatareplacedatanomodificationallowederr.java 79 nodeType = (int) entReference.getNodeType();
characterdatasetdatanomodificationallowederr.java 78 nodeType = (int) entReference.getNodeType();
commentgetcomment.java 75 childType = (int) child.getNodeType();
documentcreatedocumentfragment.java 76 newDocFragmentType = (int) newDocFragment.getNodeType();
elementgetelementsbytagnameaccessnodelist.java 70 childType = (int) child.getNodeType();

Completed in 301 milliseconds

1 23 4 5 6 7 8 91011