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

1 2 3 4 5

  /libcore/luni/src/main/java/org/apache/harmony/xml/dom/
TextImpl.java 46 return Node.TEXT_NODE;
119 if (nodeType == Node.TEXT_NODE || nodeType == Node.CDATA_SECTION_NODE) {
139 return nodeType == Node.TEXT_NODE || nodeType == Node.CDATA_SECTION_NODE
163 if (previous == null || previous.getNodeType() != Node.TEXT_NODE) {
  /external/chromium/chrome/common/extensions/docs/js/
sidebar.js 7 var TEXT_NODE = 3; // Text nodes have nodeType of 3.
69 item.firstChild.nodeType == TEXT_NODE) {
  /external/webkit/Source/WebCore/xml/
XPathUtil.cpp 48 case Node::TEXT_NODE:
90 case Node::TEXT_NODE:
  /external/webkit/Source/WebCore/dom/
DocumentFragment.cpp 61 case TEXT_NODE:
Text.cpp 86 if (type == Node::TEXT_NODE || type == Node::CDATA_SECTION_NODE) {
103 if (type == Node::TEXT_NODE || type == Node::CDATA_SECTION_NODE) {
191 return TEXT_NODE;
OptionElement.cpp 88 if (n->nodeType() == Node::TEXT_NODE || n->nodeType() == Node::CDATA_SECTION_NODE)
Range.cpp 646 case Node::TEXT_NODE:
778 case Node::TEXT_NODE:
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/uimodel/
UiTextValueNode.java 59 if (xml_child.getNodeType() == Node.TEXT_NODE) {
97 if (xml_child.getNodeType() == Node.TEXT_NODE) {
  /external/chromium/chrome/browser/resources/shared/js/
parse_html_subset.js 71 case Node.TEXT_NODE:
  /external/webkit/Tools/Scripts/
update-sources-list.py 55 if node.nodeType == node.TEXT_NODE:
  /external/webkit/Source/WebCore/inspector/front-end/
TextPrompt.js 325 if (node.nodeType === Node.TEXT_NODE && selectionRange.startOffset < node.nodeValue.length)
330 if (node.nodeType === Node.TEXT_NODE && node.nodeValue.length) {
346 if (!focusNode || focusNode.nodeType !== Node.TEXT_NODE || focusNode.parentNode !== this.element)
354 if (focusNode.nodeType !== Node.TEXT_NODE)
368 if (!focusNode || focusNode.nodeType !== Node.TEXT_NODE || focusNode.parentNode !== this.element)
376 if (focusNode.nodeType !== Node.TEXT_NODE)
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java 61 // case DTM.TEXT_NODE :
142 case DTM.TEXT_NODE :
  /external/webkit/LayoutTests/dom/xhtml/level3/core/
documentadoptnode30.js 98 newText = doc.createTextNode("Document.adoptNode test for a TEXT_NODE");
108 assertEquals("documentadoptnode30","Document.adoptNode test for a TEXT_NODE",nodeValue);
documentadoptnode31.js 114 newText = newDoc.createTextNode("new Document.adoptNode test for a TEXT_NODE");
124 assertEquals("documentadoptnode31","new Document.adoptNode test for a TEXT_NODE",nodeValue);
  /libcore/luni/src/main/java/org/w3c/dom/
Node.java 149 public static final short TEXT_NODE = 3;
662 * <td valign='top' rowspan='1' colspan='1'>TEXT_NODE, CDATA_SECTION_NODE, COMMENT_NODE,
    [all...]
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 484 if(TEXT_NODE == nexttype || CDATA_SECTION_NODE == nexttype)
496 if(TEXT_NODE == n.getNodeType())
497 nexttype=TEXT_NODE;
584 if(TEXT_NODE == nexttype || CDATA_SECTION_NODE == nexttype)
838 else if(TEXT_NODE == type || CDATA_SECTION_NODE == type)
872 if(TEXT_NODE == type || CDATA_SECTION_NODE == type)
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/lint/
TypographyFix.java 65 if (child.getNodeType() == Node.TEXT_NODE) {
  /external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java 111 transient protected int m_textType = DTM.TEXT_NODE;
117 transient protected int m_coalescedTextType = DTM.TEXT_NODE;
835 return (DTM.TEXT_NODE == type || DTM.CDATA_SECTION_NODE == type);
    [all...]
SAX2DTM2.java     [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/formatting/
XmlPrettyPrinter.java 207 case Node.TEXT_NODE: {
359 if (type == Node.TEXT_NODE || type == Node.COMMENT_NODE) {
386 } else if (curr.getNodeType() == Node.TEXT_NODE) {
505 if (previous != null && previous.getNodeType() == Node.TEXT_NODE) {
604 if (!mPrefs.removeEmptyLines && next != null && next.getNodeType() == Node.TEXT_NODE) {
772 || (curr.getNodeType() == Node.TEXT_NODE
791 } else if (nodeType == Node.TEXT_NODE) {
    [all...]
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/editors/layout/gle2/
LayoutMetadata.java 227 if (previous != null && previous.getNodeType() == Node.TEXT_NODE) {
236 && first.getNodeType() == Node.TEXT_NODE) {
253 || firstChild.getNodeType() != Node.TEXT_NODE
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTM.java 110 public static final short TEXT_NODE = 3;
    [all...]
  /external/chromium/testing/gtest/test/
gtest_xml_test_utils.py 134 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
  /external/gtest/test/
gtest_xml_test_utils.py 134 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
  /external/protobuf/gtest/test/
gtest_xml_test_utils.py 133 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:

Completed in 707 milliseconds

1 2 3 4 5