HomeSort by relevance Sort by last modified time
    Searched refs:TEXT_NODE (Results 1 - 25 of 113) 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) {
NodeImpl.java 167 case TEXT_NODE:
358 case TEXT_NODE:
426 case TEXT_NODE:
465 case 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-trace/catapult/third_party/html5lib-python/html5lib/treewalkers/
dom.py 13 elif node.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
  /external/apache-xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java 61 // case DTM.TEXT_NODE :
142 case DTM.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/gdb/darwin-x86/lib/python2.7/xml/dom/
__init__.py 30 TEXT_NODE = 3
expatbuilder.py 38 TEXT_NODE = Node.TEXT_NODE
283 elif childNodes and childNodes[-1].nodeType == TEXT_NODE:
298 if childNodes and childNodes[-1].nodeType == TEXT_NODE:
425 if child.nodeType == TEXT_NODE and not child.data.strip():
508 Node.TEXT_NODE: NodeFilter.SHOW_TEXT,
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/xml/dom/
__init__.py 30 TEXT_NODE = 3
  /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-trace/catapult/third_party/html5lib-python/html5lib/treebuilders/
dom.py 161 if Node.TEXT_NODE not in self.dom._child_node_types:
163 self.dom._child_node_types.append(Node.TEXT_NODE)
191 elif element.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/apache-xml/src/main/java/org/apache/xml/dtm/
DTM.java 110 public static final short TEXT_NODE = 3;
    [all...]
  /external/google-breakpad/src/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 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]:
  /external/vulkan-validation-layers/tests/gtest-1.7.0/test/
gtest_xml_test_utils.py 138 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
  /ndk/sources/third_party/googletest/googletest/test/
gtest_xml_test_utils.py 136 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
  /sdk/eclipse/plugins/com.android.ide.eclipse.adt/src/com/android/ide/eclipse/adt/internal/refactorings/extractstring/
XmlStringFileHelper.java 137 txtNode != null && txtNode.getNodeType() == Node.TEXT_NODE;
  /external/apache-xml/src/main/java/org/apache/xml/utils/
DOMBuilder.java 201 if (type == Node.TEXT_NODE)
483 if( childNode != null && childNode.getNodeType() == Node.TEXT_NODE ){
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
ParseRDF.java 453 if (currChild.getNodeType() != Node.TEXT_NODE)
652 if (child.getNodeType() == Node.TEXT_NODE)
    [all...]

Completed in 1050 milliseconds

1 2 3 4 5