| /external/webkit/Source/WebCore/xml/ |
| XPathNamespace.cpp | 64 String XPathNamespace::nodeValue() const
|
| XMLViewer.js | 115 if (child.nodeType == Node.TEXT_NODE && isShort(child.nodeValue) && !child.nextSibling) 134 line.appendChild(createText(child.nodeValue)); 156 if (isShort(node.nodeValue)) { 158 line.appendChild(createComment('<!-- ' + node.nodeValue + ' -->')); 164 collapsible.expanded.content.appendChild(createComment(node.nodeValue)); 176 if (isShort(node.nodeValue)) { 178 line.appendChild(createText('<![CDATA[ ' + node.nodeValue + ' ]]>')); 184 collapsible.expanded.content.appendChild(createText(node.nodeValue)); 196 if (isShort(node.nodeValue)) { 198 line.appendChild(createComment('<?' + node.nodeName + ' ' + node.nodeValue + '?>')) [all...] |
| /external/webkit/LayoutTests/dom/xhtml/level3/core/ |
| documentnormalizedocument10.js | 82 Create an Element and a text node and verify the nodeValue of this text node and append these to 99 var nodeValue; 115 nodeValue = text.nodeValue; 117 assertEquals("documentnormalizedocument10","Text Node",nodeValue); 126 nodeValue = text.nodeValue; 128 assertEquals("documentnormalizedocument10_true1","Text Node",nodeValue); 138 nodeValue = text.nodeValue; [all...] |
| documentadoptnode30.js | 79 if the node has been adopted correctly by checking the nodeValue of the adopted node. 91 var nodeValue; 106 nodeValue = adoptedText.nodeValue; 108 assertEquals("documentadoptnode30","Document.adoptNode test for a TEXT_NODE",nodeValue);
|
| documentadoptnode01.js | 79 nodeName, nodeType, nodeValue, specified and ownerElement attributes of the adopted node. 97 var nodeValue; 121 nodeValue = adoptedclass.nodeValue; 133 firstChildValue = firstChild.nodeValue; 152 assertEquals("documentadoptnode01_nodeValue","Y?",nodeValue);
|
| nodereplacechild33.js | 95 var nodeValue; 109 nodeValue = replaced.nodeValue; 111 assertEquals("nodereplacechild33","rtl",nodeValue);
|
| documentadoptnode02.js | 100 var nodeValue; 138 nodeValue = adoptedclass.nodeValue; 153 firstChildValue = firstChild.nodeValue; 172 assertEquals("documentadoptnode02_nodeValue","Y?",nodeValue);
|
| documentadoptnode21.js | 84 that is a part of this Document. Verify that the returned adopted node's nodeName, nodeValue 104 var nodeValue; 117 nodeValue = adoptedTitle.nodeValue; 125 assertEquals("documentadoptnode21_nodeValue","Yes",nodeValue);
|
| documentadoptnode31.js | 79 source. Verify if the node has been adopted correctly by checking the nodeValue of the adopted 94 var nodeValue; 122 nodeValue = adoptedText.nodeValue; 124 assertEquals("documentadoptnode31","new Document.adoptNode test for a TEXT_NODE",nodeValue);
|
| documentadoptnode32.js | 85 Document as the source. Verify if the node has been adopted correctly by checking the nodeValue 99 var nodeValue; 120 nodeValue = adoptedCDATA.nodeValue; 122 assertEquals("documentadoptnode32","Document.adoptNode test for a CDATASECTION_NODE",nodeValue);
|
| documentadoptnode33.js | 79 Document as the source. Verify if the node has been adopted correctly by checking the nodeValue 94 var nodeValue; 122 nodeValue = adoptedCDATA.nodeValue; 124 assertEquals("documentadoptnode33","Document.adoptNode test for a CDATASECTION_NODE",nodeValue);
|
| documentadoptnode34.js | 79 as the source. Verify if the node has been adopted correctly by checking the nodeValue 94 var nodeValue; 122 nodeValue = adoptedComment.nodeValue; 124 assertEquals("documentadoptnode34","Document.adoptNode test for a COMMENT_NODE",nodeValue);
|
| /external/webkit/Source/WebCore/editing/ |
| InsertNodeBeforeCommand.cpp | 57 document()->axObjectCache()->nodeTextChangeNotification(m_insertChild->renderer(), AXObjectCache::AXTextInserted, 0, m_insertChild->nodeValue().length()); 67 document()->axObjectCache()->nodeTextChangeNotification(m_insertChild->renderer(), AXObjectCache::AXTextDeleted, 0, m_insertChild->nodeValue().length());
|
| /packages/apps/Mms/src/com/android/mms/dom/ |
| AttrImpl.java | 97 public void setNodeValue(String nodeValue) throws DOMException { 98 setValue(nodeValue);
|
| /external/gtest/test/ |
| gtest_xml_test_utils.py | 70 self.assertEquals(expected_node.nodeValue, actual_node.nodeValue) 123 self.assert_(child.nodeValue.isspace()) 152 cdata = re.sub(r"^.*/(.*:)\d+\n", "\\1*\n", child.nodeValue) 154 child.nodeValue = re.sub(r"\nStack trace:\n(.|\n)*",
|
| /external/webkit/Source/WebCore/dom/ |
| StyleElement.cpp | 105 unsigned length = c->nodeValue().length(); 119 String nodeValue = c->nodeValue(); 120 unsigned nodeLength = nodeValue.length(); 121 memcpy(p, nodeValue.characters(), nodeLength * sizeof(UChar));
|
| /external/webkit/LayoutTests/fast/dom/Node/script-tests/ |
| initial-values.js | 14 shouldBe("attr.nodeValue", "''"); 25 shouldBe("attr.nodeValue", "''"); 38 shouldBe("attr.nodeValue", "''"); 49 shouldBe("attr.nodeValue", "''"); 58 shouldBe("comment.nodeValue", "'foo'"); 68 shouldBe("cdata.nodeValue", "'foo'"); 77 shouldBe("fragment.nodeValue", "null"); 87 shouldBe("doc.nodeValue", "null"); 96 shouldBe("doctype.nodeValue", "null"); 108 shouldBe("element.nodeValue", "null") [all...] |
| /libcore/dom/src/test/java/org/w3c/domts/level2/core/ |
| hc_nodedocumentfragmentnormalize2.java | 61 String nodeValue;
|
| /external/webkit/LayoutTests/dom/html/level1/core/ |
| hc_documentgetdoctype.js | 90 var nodeValue; 133 nodeValue = docType.nodeValue; 135 assertNull("nodeValue",nodeValue);
|
| hc_nodevalue01.js | 98 newValue = newNode.nodeValue; 101 newNode.nodeValue = "This should have no effect"; 103 newValue = newNode.nodeValue;
|
| hc_nodevalue05.js | 98 newValue = newNode.nodeValue; 101 newNode.nodeValue = "This should have no effect"; 103 newValue = newNode.nodeValue;
|
| hc_nodevalue06.js | 96 newValue = newNode.nodeValue; 99 newNode.nodeValue = "This should have no effect"; 101 newValue = newNode.nodeValue;
|
| /external/webkit/LayoutTests/dom/xhtml/level1/core/ |
| hc_documentgetdoctype.js | 90 var nodeValue; 133 nodeValue = docType.nodeValue; 135 assertNull("nodeValue",nodeValue);
|
| /libcore/luni/src/test/java/tests/org/w3c/dom/ |
| DocumentCreateAttributeNS.java | 107 String nodeValue; 115 nodeValue = attribute1.getNodeValue(); 122 nodeValue); 130 nodeValue = attribute2.getNodeValue(); 137 nodeValue);
|
| CreateDocumentType.java | 166 String nodeValue; 172 nodeValue = newType.getNodeValue(); 173 assertNull("nodeValue", nodeValue);
|