HomeSort by relevance Sort by last modified time
    Searched refs:TEXT_NODE (Results 1 - 25 of 120) 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/chromium_org/third_party/WebKit/Source/core/xml/
XPathUtil.cpp 48 case Node::TEXT_NODE:
89 case Node::TEXT_NODE:
  /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/chromium_org/third_party/WebKit/Source/core/dom/
DocumentFragment.cpp 59 case TEXT_NODE:
Text.cpp 69 if (nextSibling->nodeType() != TEXT_NODE)
140 if (type == Node::TEXT_NODE || type == Node::CDATA_SECTION_NODE) {
155 if (type == Node::TEXT_NODE || type == Node::CDATA_SECTION_NODE) {
234 return TEXT_NODE;
Range.cpp 647 case Node::TEXT_NODE:
791 case Node::TEXT_NODE:
    [all...]
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java 61 // case DTM.TEXT_NODE :
142 case DTM.TEXT_NODE :
  /external/chromium_org/tools/grit/grit/gather/
policy_json.py 39 if (node1.nodeType == minidom.Node.TEXT_NODE):
73 if child.nodeType == minidom.Node.TEXT_NODE:
99 if child.nodeType == minidom.Node.TEXT_NODE:
112 if child.nodeType == minidom.Node.TEXT_NODE:
  /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...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/xml/dom/
__init__.py 30 TEXT_NODE = 3
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/xml/dom/
__init__.py 30 TEXT_NODE = 3
  /external/chromium_org/third_party/tlslite/tlslite/utils/
xmltools.py 48 if element.firstChild.nodeType == element.firstChild.TEXT_NODE:
65 elif child.nodeType == child.TEXT_NODE:
184 if textNode.nodeType != textNode.TEXT_NODE:
  /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...]
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/
TextPrompt.js 652 if (node.nodeType === Node.TEXT_NODE && selectionRange.startOffset < node.nodeValue.length)
657 if (node.nodeType === Node.TEXT_NODE && node.nodeValue.length) {
676 if (!focusNode || focusNode.nodeType !== Node.TEXT_NODE || focusNode.parentNode !== this._element)
684 if (focusNode.nodeType !== Node.TEXT_NODE)
701 if (!focusNode || focusNode.nodeType !== Node.TEXT_NODE || focusNode.parentNode !== this._element)
709 if (focusNode.nodeType !== Node.TEXT_NODE)
DOMExtension.js 55 if (node.nodeType === Node.TEXT_NODE) {
90 if (node.nodeType === Node.TEXT_NODE) {
109 endOffset = stayWithinNode.nodeType === Node.TEXT_NODE ? stayWithinNode.nodeValue.length : stayWithinNode.childNodes.length;
129 while (node && node.nodeType !== Node.TEXT_NODE)
DOMPresentationUtils.js 407 case Node.TEXT_NODE:
450 var leftType = left.nodeType() === Node.CDATA_SECTION_NODE ? Node.TEXT_NODE : left.nodeType();
451 var rightType = right.nodeType() === Node.CDATA_SECTION_NODE ? Node.TEXT_NODE : right.nodeType();
  /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...]
  /external/chromium_org/tools/gyp/tools/
pretty_vcproj.py 62 if node.nodeType == Node.TEXT_NODE:
152 if sub_node.nodeType == Node.TEXT_NODE:
224 if child2.nodeType == 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/chromium_org/testing/gtest/test/
gtest_xml_test_utils.py 134 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:

Completed in 574 milliseconds

1 2 3 4 5