/external/webkit/Source/WebCore/xml/ |
XPathUtil.cpp | 51 return node->nodeValue(); 59 const String& nodeValue = n->nodeValue(); 60 result.append(nodeValue.characters(), nodeValue.length());
|
XPathNamespace.h | 48 virtual String nodeValue() const;
|
/libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
documentcreateattributeNS02.java | 70 String nodeValue; 77 nodeValue = attribute1.getNodeValue(); 82 assertEquals("documentcreateattributeNS02_att1_nodeValue", "", nodeValue); 88 nodeValue = attribute2.getNodeValue(); 93 assertEquals("documentcreateattributeNS02_att2_nodeValue", "", nodeValue);
|
createDocument07.java | 77 String nodeValue; 82 nodeValue = aNewDoc.getNodeValue(); 84 assertNull("nodeValue", nodeValue);
|
documentcreateattributeNS01.java | 73 String nodeValue; 77 nodeValue = attribute.getNodeValue();
|
createDocumentType03.java | 76 String nodeValue; 82 nodeValue = newType.getNodeValue(); 83 assertNull("nodeValue", nodeValue);
|
documentimportnode01.java | 42 * nodeType and nodeValue of the imported node to verify if it has been imported correctly. 83 String nodeValue; 90 nodeValue = importedAttr.getNodeValue(); 94 assertEquals("documentimportnode01_nodeValue", "Yes", nodeValue);
|
documentimportnode02.java | 41 * Check the parentNode, nodeName, nodeType and nodeValue of the imported node to 84 String nodeValue; 95 nodeValue = importedAttr.getNodeValue(); 100 assertEquals("documentimportnode02_nodeValue", "CANADA", nodeValue);
|
documentimportnode03.java | 42 * Check the parentNode, nodeName, nodeType and nodeValue of the imported node to 85 String nodeValue; 92 nodeValue = importedAttr.getNodeValue(); 96 assertEquals("documentimportnode03_nodeValue", "defaultVal", nodeValue);
|
documentimportnode04.java | 42 * Check the parentNode, nodeName, nodeType and nodeValue of the imported node to 89 String nodeValue; 98 nodeValue = importedAttr.getNodeValue(); 102 assertEquals("documentimportnode04_nodeValue", "defaultVal", nodeValue);
|
documentimportnode05.java | 41 * Check the nodeName, nodeType and nodeValue namespaceURI of the imported node to 83 String nodeValue; 90 nodeValue = importedAttr.getNodeValue(); 95 assertEquals("documentimportnode05_nodeValue", "", nodeValue);
|
documentimportnode15.java | 80 String nodeValue; 85 nodeValue = textImport.getNodeValue(); 86 assertEquals("documentimportnode15", "Document.importNode test for a TEXT_NODE", nodeValue);
|
documentimportnode17.java | 80 String nodeValue; 85 nodeValue = commentImport.getNodeValue(); 86 assertEquals("documentimportnode17", "Document.importNode test for a COMMENT_NODE", nodeValue);
|
hc_nodedocumentfragmentnormalize1.java | 61 String nodeValue; 72 nodeValue = txtNode.getNodeValue(); 73 assertEquals("normalizedNodeValue", "foobar", nodeValue);
|
/libcore/dom/src/test/java/org/w3c/domts/level1/core/ |
documentgetdoctype.java | 68 String nodeValue; 80 nodeValue = docType.getNodeValue(); 81 assertNull("initiallyNull", nodeValue);
|
hc_documentgetdoctype.java | 61 String nodeValue; 81 nodeValue = docType.getNodeValue(); 82 assertNull("nodeValue", nodeValue);
|
/external/libvpx/examples/includes/ASCIIMathPHP-2.0/ |
htmlMathML.js | 18 newnode.setAttribute(node.attributes[i].nodeName,node.attributes[i].nodeValue); 22 var st = node.childNodes[i].nodeValue; 58 str += node.nodeValue; 63 if (node.attributes[j].nodeValue!="italic" && 64 node.attributes[j].nodeValue!="" && 65 node.attributes[j].nodeValue!="inherit" && 66 node.attributes[j].nodeValue!=undefined) { 68 "\""+node.attributes[j].nodeValue+"\"";
|
/external/webkit/Source/WebCore/editing/ |
AppendNodeCommand.cpp | 48 String nodeValue = node->nodeValue(); 49 unsigned len = nodeValue.length(); 51 if (nodeValue == "\n")
|
/external/webkit/LayoutTests/dom/xhtml/level3/core/ |
canonicalform08.js | 101 var nodeValue; 127 nodeValue = node.data; 129 length = nodeValue.length; 136 nodeValue = node.nodeValue; 138 length = nodeValue.length; 150 nodeValue = node.nodeValue; 152 length = nodeValue.length; 159 nodeValue = node.data [all...] |
canonicalform09.js | 102 var nodeValue; 129 nodeValue = node.data; 131 length = nodeValue.length; 138 nodeValue = node.nodeValue; 140 length = nodeValue.length; 152 nodeValue = node.nodeValue; 154 length = nodeValue.length; 161 nodeValue = node.data [all...] |
/external/chromium/testing/gtest/test/ |
gtest_xml_test_utils.py | 72 self.assertEquals(expected_node.nodeValue, actual_node.nodeValue) 137 not child.nodeValue.isspace()): 139 child.nodeValue) 141 children["detail"].nodeValue += child.nodeValue 173 cdata = re.sub(r"^.*[/\\](.*:)\d+\n", "\\1*\n", child.nodeValue) 175 child.nodeValue = re.sub(r"\nStack trace:\n(.|\n)*",
|
/external/protobuf/gtest/test/ |
gtest_xml_test_utils.py | 71 self.assertEquals(expected_node.nodeValue, actual_node.nodeValue) 136 not child.nodeValue.isspace()): 138 child.nodeValue) 140 children["detail"].nodeValue += child.nodeValue 166 cdata = re.sub(r"^.*[/\\](.*:)\d+\n", "\\1*\n", child.nodeValue) 168 child.nodeValue = re.sub(r"\nStack trace:\n(.|\n)*",
|
/external/webkit/LayoutTests/fast/dom/EntityReference/script-tests/ |
readonly-exceptions.js | 10 // nodeValue is defined to be null for Entity Reference nodes, and thus should silently fail to modify 13 shouldThrow("entityReference.nodeValue = 'foo'"); 14 shouldBe("entityReference.nodeValue", "null");
|
/libcore/luni/src/test/java/tests/org/w3c/dom/ |
DocumentImportNode.java | 25 * parentNode, nodeName, nodeType and nodeValue of the imported node to verify 73 // String nodeValue; 81 // nodeValue = importedAttr.getNodeValue(); 85 // assertEquals("documentimportnode01_nodeValue", "Yes", nodeValue); 95 String nodeValue; 107 nodeValue = importedAttr.getNodeValue(); 112 assertEquals("documentimportnode02_nodeValue", "CANADA", nodeValue); 124 // String nodeValue; 132 // nodeValue = importedAttr.getNodeValue(); 136 // assertEquals("documentimportnode03_nodeValue", "defaultVal", nodeValue); [all...] |
HCNodeDocumentFragmentNormalize.java | 52 String nodeValue; 64 nodeValue = txtNode.getNodeValue(); 65 assertEquals("normalizedNodeValue", "foobar", nodeValue);
|