HomeSort by relevance Sort by last modified time
    Searched refs:nodeValue (Results 1 - 25 of 79) sorted by null

1 2 3 4

  /external/webkit/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;
XPathNamespace.cpp 64 String XPathNamespace::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/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/WebCore/dom/
StyleElement.cpp 68 resultLength += c->nodeValue().length();
77 String nodeValue = c->nodeValue();
78 unsigned nodeLength = nodeValue.length();
79 memcpy(p, nodeValue.characters(), nodeLength * sizeof(UChar));
CharacterData.h 54 virtual String nodeValue() const;
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCNodeDocumentFragmentNormalize.java 72 String nodeValue;
84 nodeValue = txtNode.getNodeValue();
85 assertEquals("normalizedNodeValue", "foobar", nodeValue);
DocumentImportNode.java 30 * parentNode, nodeName, nodeType and nodeValue of the imported node to verify
79 // String nodeValue;
87 // nodeValue = importedAttr.getNodeValue();
91 // assertEquals("documentimportnode01_nodeValue", "Yes", nodeValue);
107 String nodeValue;
119 nodeValue = importedAttr.getNodeValue();
124 assertEquals("documentimportnode02_nodeValue", "CANADA", nodeValue);
136 // String nodeValue;
144 // nodeValue = importedAttr.getNodeValue();
148 // assertEquals("documentimportnode03_nodeValue", "defaultVal", nodeValue);
    [all...]
  /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)*",

Completed in 714 milliseconds

1 2 3 4