HomeSort by relevance Sort by last modified time
    Searched refs:TEXT_NODE (Results 1 - 25 of 122) 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_org/third_party/WebKit/Source/core/xml/
XPathUtil.cpp 48 case Node::TEXT_NODE:
85 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_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;
Node.idl 28 const unsigned short TEXT_NODE = 3;
Attr.cpp 165 return TEXT_NODE == type;
  /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/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/ui/
TextPrompt.js 636 if (node.nodeType === Node.TEXT_NODE && selectionRange.startOffset < node.nodeValue.length)
641 if (node.nodeType === Node.TEXT_NODE && node.nodeValue.length) {
660 if (!focusNode || focusNode.nodeType !== Node.TEXT_NODE || focusNode.parentNode !== this._element)
668 if (focusNode.nodeType !== Node.TEXT_NODE)
685 if (!focusNode || focusNode.nodeType !== Node.TEXT_NODE || focusNode.parentNode !== this._element)
693 if (focusNode.nodeType !== Node.TEXT_NODE)
  /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/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
DOMPresentationUtils.js 428 case Node.TEXT_NODE:
471 var leftType = left.nodeType() === Node.CDATA_SECTION_NODE ? Node.TEXT_NODE : left.nodeType();
472 var rightType = right.nodeType() === Node.CDATA_SECTION_NODE ? Node.TEXT_NODE : right.nodeType();
  /external/apache-xml/src/main/java/org/apache/xml/dtm/
DTM.java 110 public static final short TEXT_NODE = 3;
    [all...]
  /external/chromium_org/testing/gtest/test/
gtest_xml_test_utils.py 138 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
V8NodeCustom.cpp 136 case Node::TEXT_NODE:
  /external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
DOMExtension.js 59 if (node.nodeType === Node.TEXT_NODE) {
94 if (node.nodeType === Node.TEXT_NODE) {
113 endOffset = stayWithinNode.nodeType === Node.TEXT_NODE ? stayWithinNode.nodeValue.length : stayWithinNode.childNodes.length;
137 while (node && node.nodeType !== Node.TEXT_NODE)
  /external/gtest/test/
gtest_xml_test_utils.py 138 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 1149 milliseconds

1 2 3 4 5