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

1 2

  /libcore/luni/src/test/java/libcore/xml/
SimpleBuilderTest.java 46 private String getTextContent(Node node) {
51 result = result + getTextContent(child);
77 getTextContent(one));
79 getTextContent(two));
80 assertEquals("Rent this space!", getTextContent(three));
81 assertEquals("", getTextContent(four));
XsltXPathConformanceTestSuite.java 170 String majorPath = majorPathElement.getTextContent();
211 String purpose = purposeElement != null ? purposeElement.getTextContent() : "";
236 String testDirectory = filePathElement.getTextContent();
246 File principalData = findFile(inBase, principalDataElement.getTextContent());
247 File principalStylesheet = findFile(inBase, principalStylesheetElement.getTextContent());
256 principal = findFile(outBase, principalElement.getTextContent());
496 String trimmed = node.getTextContent().trim();
JaxenXPathTestSuite.java 177 assertEquals(valueOf.getTextContent(),
207 assertEquals(element.getTextContent(),
  /sdk/sdkmanager/libs/sdklib/src/com/android/sdklib/internal/repository/
XmlParserUtils.java 61 return child == null ? "" : child.getTextContent(); //$NON-NLS-1$
80 return child == null ? null : child.getTextContent(); //$NON-NLS-1$
SdkRepoSource.java 291 String content = revision.getTextContent();
311 String content = minPTRev.getTextContent();
342 String url = node == null ? null : node.getTextContent().trim();
350 size = Long.parseLong(node.getTextContent());
370 String sha1 = node == null ? null : node.getTextContent().trim();
  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
InnerNodeImpl.java 199 public String getTextContent() throws DOMException {
207 return hasTextContent(child) ? child.getTextContent() : "";
211 getTextContent(buf);
215 void getTextContent(StringBuilder buf) throws DOMException {
219 ((NodeImpl) child).getTextContent(buf);
DocumentTypeImpl.java 110 @Override public String getTextContent() throws DOMException {
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 678 public String getTextContent()
    [all...]
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
nodegettextcontent15.js 80 The method getTextContent returns the text content of this node and its descendants.
82 Invoke the method getTextContent on a new Element node with new Text, EntityReferences
nodegettextcontent16.js 80 The method getTextContent returns the text content of this node and its descendants.
82 Invoke the method getTextContent on a new DocumentFragment node with new Text, EntityReferences
nodegettextcontent01.js 80 Using getTextContent on this Document node check if the value returned is Null .
nodegettextcontent02.js 80 Using getTextContent on a new Document node check if the value returned is Null .
nodegettextcontent03.js 80 Using getTextContent on this DocumentType node check if the value returned is Null .
nodegettextcontent04.js 80 Using getTextContent on a new DocumentType node check if the value returned is Null.
nodegettextcontent05.js 80 Using getTextContent on this DocumentType node check if the value returned is Null .
nodegettextcontent06.js 80 Invoke the method getTextContent on a default Attr node and check if the value returned
nodegettextcontent07.js 78 Invoke the method getTextContent on a new Attr node and check if the value returned
nodegettextcontent09.js 78 Invoke the method getTextContent on a new Text node and check if the value returned
nodegettextcontent10.js 80 Invoke the method getTextContent on an existing Text node and check if the value returned
nodegettextcontent11.js 80 Invoke the method getTextContent on an existing CDATASection node and check if the value returned
nodegettextcontent12.js 78 Invoke the method getTextContent on a new Comment node and check if the value returned
nodegettextcontent13.js 80 Invoke the method getTextContent on an existing Element node with Text and CDATA
nodegettextcontent14.js 78 Invoke the method getTextContent on an existing Element node with Child Element, Text
nodegettextcontent17.js 78 Invoke the method getTextContent on a new EntityReference node and check if the
nodegettextcontent18.js 78 Invoke the method getTextContent on an Entity node and check if the value returned

Completed in 1426 milliseconds

1 2