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

12 3 4 5

  /libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodecommentnodeattributes.java 69 int nodeType;
74 nodeType = (int) childNode.getNodeType();
76 if (equals(8, nodeType)) {
nodecommentnodename.java 67 int nodeType;
73 nodeType = (int) commentNode.getNodeType();
75 if (equals(8, nodeType)) {
nodecommentnodetype.java 68 int nodeType;
76 nodeType = (int) commentNode.getNodeType();
77 assertEquals("nodeCommentNodeTypeAssert1", 8, nodeType);
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)) {
  /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);
  /external/webkit/Source/JavaScriptCore/API/tests/
JSNode.c 113 JSStringRef nodeType = JSStringCreateWithUTF8CString(node->nodeType);
114 JSValueRef value = JSValueMakeString(context, nodeType);
115 JSStringRelease(nodeType);
142 { "nodeType", JSNode_getNodeType, NULL, kJSPropertyAttributeDontDelete | kJSPropertyAttributeReadOnly },
  /external/webkit/Source/WebCore/dom/
Attr.cpp 80 Node::NodeType Attr::nodeType() const
155 bool Attr::childTypeAllowed(NodeType type) const
StyleElement.cpp 36 Node::NodeType nodeType = node->nodeType();
37 return nodeType == Node::TEXT_NODE || nodeType == Node::CDATA_SECTION_NODE;

Completed in 528 milliseconds

12 3 4 5