Home
last modified time | relevance | path

Searched refs:TEXT_NODE (Results 1 – 25 of 49) sorted by relevance

12

/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DDOM2DTM.java484 if(TEXT_NODE == nexttype || CDATA_SECTION_NODE == nexttype) in nextNode()
496 if(TEXT_NODE == n.getNodeType()) in nextNode()
497 nexttype=TEXT_NODE; in nextNode()
584 if(TEXT_NODE == nexttype || CDATA_SECTION_NODE == nexttype) in nextNode()
838 else if(TEXT_NODE == type || CDATA_SECTION_NODE == type) in getStringValue()
872 if(TEXT_NODE == type || CDATA_SECTION_NODE == type) in isWhitespace()
932 case Node.TEXT_NODE : in getNodeData()
1216 if(TEXT_NODE != ntype && CDATA_SECTION_NODE != ntype) in logicalNextDOMTextNode()
1239 if(TEXT_NODE!=type && CDATA_SECTION_NODE!=type) in getNodeValue()
1625 if(TEXT_NODE == type || CDATA_SECTION_NODE == type) in dispatchCharactersEvents()
[all …]
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
DSAX2DTM2.java1592 } while (eType == TEXT_NODE in next()
1605 } while(ATTRIBUTE_NODE == type || TEXT_NODE == type in next()
2415 m_previous = addNode(m_coalescedTextType, DTM.TEXT_NODE, in charactersFlush()
2424 m_previous = addNode(m_coalescedTextType, DTM.TEXT_NODE, in charactersFlush()
2435 m_textType = m_coalescedTextType = DTM.TEXT_NODE; in charactersFlush()
2794 if (type == DTM.TEXT_NODE || type == DTM.CDATA_SECTION_NODE) in getStringValue()
2833 else if (DTM.TEXT_NODE == type || DTM.CDATA_SECTION_NODE == type) in getStringValue()
2907 if (type == DTM.TEXT_NODE || type == DTM.CDATA_SECTION_NODE) in getStringValueX()
2943 else if (DTM.TEXT_NODE == type || DTM.CDATA_SECTION_NODE == type) in getStringValueX()
2980 if ((_exptype2(child) == DTM.TEXT_NODE) && (_nextsib2(child) == DTM.NULL)) in getStringValue()
[all …]
DSAX2DTM.java111 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); in isTextType()
1532 int exName = m_expandedNameTable.getExpandedTypeID(DTM.TEXT_NODE); in charactersFlush()
1545 m_textType = m_coalescedTextType = DTM.TEXT_NODE; in charactersFlush()
2079 else if (m_textType == DTM.TEXT_NODE) in characters()
2081 m_coalescedTextType = DTM.TEXT_NODE; in characters()
2430 m_textType = DTM.TEXT_NODE; in endCDATA()
/external/python/cpython2/Doc/includes/
Dminidom-example.py24 if node.nodeType == node.TEXT_NODE:
/external/python/cpython3/Doc/includes/
Dminidom-example.py24 if node.nodeType == node.TEXT_NODE:
/external/python/cpython3/Lib/xml/dom/
Dexpatbuilder.py36 TEXT_NODE = Node.TEXT_NODE variable
283 elif childNodes and childNodes[-1].nodeType == TEXT_NODE:
296 if childNodes and childNodes[-1].nodeType == TEXT_NODE:
418 if child.nodeType == TEXT_NODE and not child.data.strip():
501 Node.TEXT_NODE: NodeFilter.SHOW_TEXT,
Dminidom.py182 if child.nodeType == Node.TEXT_NODE:
334 Node.TEXT_NODE,
353 _child_node_types = (Node.TEXT_NODE, Node.ENTITY_REFERENCE_NODE)
675 Node.TEXT_NODE,
890 Node.TEXT_NODE, Node.CDATA_SECTION_NODE)):
1093 nodeType = Node.TEXT_NODE
1121 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
1128 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
1141 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
1151 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
[all …]
D__init__.py31 TEXT_NODE = 3 variable in Node
/external/python/cpython2/Lib/xml/dom/
Dexpatbuilder.py38 TEXT_NODE = Node.TEXT_NODE variable
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,
Dminidom.py180 if child.nodeType == Node.TEXT_NODE:
324 Node.TEXT_NODE,
342 _child_node_types = (Node.TEXT_NODE, Node.ENTITY_REFERENCE_NODE)
640 Node.TEXT_NODE,
809 self.childNodes[0].nodeType == Node.TEXT_NODE):
1018 nodeType = Node.TEXT_NODE
1046 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
1053 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
1066 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
1076 if n.nodeType in (Node.TEXT_NODE, Node.CDATA_SECTION_NODE):
[all …]
D__init__.py30 TEXT_NODE = 3 variable in Node
/external/libyuv/files/tools_libyuv/valgrind/
Dmemcheck_analyze.py48 if node.nodeType == node.TEXT_NODE])
211 if n.nodeType == n.TEXT_NODE])
550 if x.nodeType == node.TEXT_NODE and "Command" in x.data:
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
DClonerToResultTree.java142 case DTM.TEXT_NODE : in cloneToResultTree()
/external/apache-xml/src/main/java/org/apache/xml/dtm/ref/
DDTMDocumentImpl.java1429 case TEXT_NODE: in getStringValue()
1708 case TEXT_NODE: in getNodeValue()
2095 int w0 = TEXT_NODE; in appendTextChild()
2253 w0 = TEXT_NODE; in appendAttribute()
DExpandedNameTable.java54 public static final int TEXT = ((int)DTM.TEXT_NODE) ;
DDTMTreeWalker.java321 case DTM.TEXT_NODE : in startNode()
/external/apache-xml/src/main/java/org/apache/xml/utils/
DDOMBuilder.java201 if (type == Node.TEXT_NODE) in append()
483 if( childNode != null && childNode.getNodeType() == Node.TEXT_NODE ){ in characters()
/external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
DParseRDF.java453 if (currChild.getNodeType() != Node.TEXT_NODE) in rdf_PropertyElement()
652 if (child.getNodeType() == Node.TEXT_NODE) in rdf_LiteralPropertyElement()
1182 if (node.getNodeType() != Node.TEXT_NODE) in isWhitespaceNode()
DXMPMetaParser.java339 else if (Node.TEXT_NODE != root.getNodeType() && in findRootNode()
/external/apache-xml/src/main/java/org/apache/xml/dtm/
DDTM.java110 public static final short TEXT_NODE = 3; field
/external/googletest/googletest/test/
Dgtest_xml_test_utils.py141 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
/external/apache-xml/src/main/java/org/apache/xalan/templates/
DTemplateList.java443 case DTM.TEXT_NODE : in getHead()
511 case DTM.TEXT_NODE : in getTemplateFast()
DElemApplyTemplates.java293 case DTM.TEXT_NODE : in transformSelectedNodes()
/external/deqp/scripts/log/
Dlog_parser.py87 if node.nodeType == node.TEXT_NODE:
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/charsetdet/
DTestCharsetDetector.java377 if (node.getNodeType() == Node.TEXT_NODE) { in TestDetection()
383 if (valueNode.getNodeType() != Node.TEXT_NODE) { in TestDetection()

12