HomeSort by relevance Sort by last modified time
    Searched defs:nodeType (Results 26 - 50 of 121) sorted by null

12 3 4 5

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodeentitynodetype.java 63 int nodeType;
71 nodeType = (int) entityNode.getNodeType();
72 assertEquals("entityNodeType", 6, nodeType);
nodeentityreferencenodeattributes.java 64 int nodeType;
69 nodeType = (int) entRefNode.getNodeType();
71 if (!equals(5, nodeType)) {
nodeentityreferencenodename.java 69 int nodeType;
74 nodeType = (int) entRefNode.getNodeType();
76 if (!equals(5, nodeType)) {
nodeentityreferencenodetype.java 67 int nodeType;
72 nodeType = (int) entRefNode.getNodeType();
74 if (equals(3, nodeType)) {
77 nodeType = (int) entRefNode.getNodeType();
79 assertEquals("entityNodeType", 5, nodeType);
nodeentityreferencenodevalue.java 69 int nodeType;
74 nodeType = (int) entRefNode.getNodeType();
76 if (equals(3, nodeType)) {
nodenotationnodetype.java 66 int nodeType;
74 nodeType = (int) notationNode.getNodeType();
75 assertEquals("nodeNotationNodeTypeAssert1", 12, nodeType);
nodeprocessinginstructionnodetype.java 66 int nodeType;
70 nodeType = (int) piNode.getNodeType();
71 assertEquals("nodeProcessingInstructionNodeTypeAssert1", 7, nodeType);
nodetextnodetype.java 67 int nodeType;
72 nodeType = (int) textNode.getNodeType();
73 assertEquals("nodeTextNodeTypeAssert1", 3, nodeType);
cdatasectiongetdata.java 74 int nodeType;
79 nodeType = (int) lastChild.getNodeType();
80 assertEquals("isCDATA", 4, nodeType);
characterdataappenddatanomodificationallowederr.java 72 int nodeType;
78 nodeType = (int) entReference.getNodeType();
80 if (equals(1, nodeType)) {
characterdatadeletedatanomodificationallowederr.java 71 int nodeType;
78 nodeType = (int) entReference.getNodeType();
80 if (equals(3, nodeType)) {
characterdatainsertdatanomodificationallowederr.java 70 int nodeType;
78 nodeType = (int) entReference.getNodeType();
80 if (equals(1, nodeType)) {
characterdatareplacedatanomodificationallowederr.java 73 int nodeType;
79 nodeType = (int) entReference.getNodeType();
81 if (equals(1, nodeType)) {
characterdatasetdatanomodificationallowederr.java 72 int nodeType;
78 nodeType = (int) entReference.getNodeType();
80 if (equals(1, nodeType)) {
elementremoveattributenodenomodificationallowederr.java 73 int nodeType;
85 nodeType = (int) gen.getNodeType();
87 if (equals(1, nodeType)) {
elementremoveattributenodenomodificationallowederrEE.java 75 int nodeType;
elementremoveattributenomodificationallowederr.java 74 int nodeType;
82 nodeType = (int) gen.getNodeType();
84 if (equals(1, nodeType)) {
elementsetattributenodenomodificationallowederr.java 74 int nodeType;
81 nodeType = (int) entRef.getNodeType();
83 if (equals(1, nodeType)) {
hc_elementgetelementsbytagnameaccessnodelist.java 73 int nodeType;
80 nodeType = (int) firstC.getNodeType();
82 while (equals(3, nodeType)) {
84 nodeType = (int) firstC.getNodeType();
hc_nodeappendchildchildexists.java 76 int nodeType;
101 nodeType = (int) memberNode.getNodeType();
103 if (equals(1, nodeType)) {
hc_nodeappendchilddocfragment.java 78 int nodeType;
101 nodeType = (int) child.getNodeType();
103 if (equals(1, nodeType)) {
hc_nodechildnodes.java 69 int nodeType;
87 nodeType = (int) childNode.getNodeType();
90 if (equals(1, nodeType)) {
93 assertEquals("textNodeType", 3, nodeType);
hc_nodeinsertbefore.java 85 int nodeType;
95 nodeType = (int) child.getNodeType();
97 if (equals(1, nodeType)) {
  /external/antlr/antlr-3.4/runtime/ObjC/Framework/
ACBTree.h 12 } NodeType;
51 NSInteger nodeType; /* 1 = node, 2 = leaf, -1 = unused */
67 @property (assign) NSInteger nodeType;
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemCopy.java 99 short nodeType = dtm.getNodeType(sourceNode);
101 if ((DTM.DOCUMENT_NODE != nodeType) && (DTM.DOCUMENT_FRAGMENT_NODE != nodeType))
106 ClonerToResultTree.cloneToResultTree(sourceNode, nodeType, dtm,
109 if (DTM.ELEMENT_NODE == nodeType)
112 SerializerUtils.processNSDecls(rthandler, sourceNode, nodeType, dtm);

Completed in 298 milliseconds

12 3 4 5