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

1 2

  /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.cpp 64 String XPathNamespace::nodeValue() const
  /external/webkit/Source/WebCore/editing/
AppendNodeCommand.cpp 48 String nodeValue = node->nodeValue();
49 unsigned len = nodeValue.length();
51 if (nodeValue == "\n")
  /tools/motodev/src/plugins/android.codeutils/src/com/motorola/studio/android/model/resources/types/
UnknownNode.java 26 * The node name: <nodename attrName="attrValue">nodeValue</nodename>
31 * The node value: <nodename attrName="attrValue">nodeValue</nodename>
33 private String nodeValue;
83 * Sets the node value: <nodename attrName="attrValue">nodeValue</nodename>
89 this.nodeValue = value;
93 * Retrieves the node value: <nodename attrName="attrValue">nodeValue</nodename>
99 return nodeValue;
AbstractSimpleNameResourceNode.java 33 protected String nodeValue;
97 return nodeValue;
104 * @param nodeValue the resource value
106 public void setNodeValue(String nodeValue)
108 this.nodeValue = 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);
  /libcore/dom/src/test/java/org/w3c/domts/level2/core/
documentcreateattributeNS01.java 73 String nodeValue;
77 nodeValue = attribute.getNodeValue();
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);
hc_nodedocumentfragmentnormalize2.java 61 String nodeValue;
createDocument07.java 77 String nodeValue;
82 nodeValue = aNewDoc.getNodeValue();
84 assertNull("nodeValue", nodeValue);
createDocumentType03.java 76 String nodeValue;
82 nodeValue = newType.getNodeValue();
83 assertNull("nodeValue", nodeValue);
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);
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);
  /external/webkit/Source/WebCore/dom/
Attr.cpp 116 String Attr::nodeValue() const
CharacterData.cpp 156 String CharacterData::nodeValue() const
166 void CharacterData::setNodeValue(const String& nodeValue, ExceptionCode& ec)
168 setData(nodeValue, ec);
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));
ProcessingInstruction.cpp 85 String ProcessingInstruction::nodeValue() const
90 void ProcessingInstruction::setNodeValue(const String& nodeValue, ExceptionCode& ec)
93 setData(nodeValue, ec);
  /libcore/luni/src/test/java/tests/org/w3c/dom/
HCNodeDocumentFragmentNormalize.java 52 String nodeValue;
64 nodeValue = txtNode.getNodeValue();
65 assertEquals("normalizedNodeValue", "foobar", nodeValue);

Completed in 233 milliseconds

1 2