Searched refs:TEXT_NODE (Results 1 - 25 of 74) sorted by relevance

123

/external/chromium_org/third_party/WebKit/Source/core/xml/
H A DXPathUtil.cpp48 case Node::TEXT_NODE:
85 case Node::TEXT_NODE:
/external/chromium_org/third_party/WebKit/Source/core/dom/
H A DDocumentFragment.cpp59 case TEXT_NODE:
H A DText.cpp69 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;
H A DNode.idl28 const unsigned short TEXT_NODE = 3;
H A DAttr.cpp165 return TEXT_NODE == type;
H A DRange.cpp670 case Node::TEXT_NODE:
934 if (type == Node::TEXT_NODE || type == Node::CDATA_SECTION_NODE) {
989 case Node::TEXT_NODE:
1040 case Node::TEXT_NODE:
1058 case Node::TEXT_NODE:
1120 case Node::TEXT_NODE:
1134 case Node::TEXT_NODE:
1168 case Node::TEXT_NODE:
1204 case Node::TEXT_NODE:
1237 if (startNonTextContainer->nodeType() == Node::TEXT_NODE)
[all...]
/external/chromium_org/tools/grit/grit/gather/
H A Dpolicy_json.py39 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:
/external/chromium_org/ui/webui/resources/js/
H A Dparse_html_subset.js95 case Node.TEXT_NODE:
/external/apache-xml/src/main/java/org/apache/xalan/transformer/
H A DClonerToResultTree.java61 // case DTM.TEXT_NODE :
142 case DTM.TEXT_NODE :
/external/chromium_org/tools/gyp/tools/
H A Dpretty_vcproj.py62 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/ref/dom2dtm/
H A DDOM2DTM.java484 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)
932 case Node.TEXT_NODE :
1216 if(TEXT_NODE != ntype && CDATA_SECTION_NODE != ntype)
1239 if(TEXT_NODE!=type && CDATA_SECTION_NODE!=type)
1625 if(TEXT_NODE
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/ui/
H A DTextPrompt.js636 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)
/external/chromium_org/chrome/renderer/resources/extensions/
H A Domnibox_custom_bindings.js54 if (child.nodeType == Node.TEXT_NODE) {
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/common/
H A DDOMExtension.js59 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/apache-xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
H A 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);
1532 int exName = m_expandedNameTable.getExpandedTypeID(DTM.TEXT_NODE);
1545 m_textType = m_coalescedTextType = DTM.TEXT_NODE;
2079 else if (m_textType == DTM.TEXT_NODE)
2081 m_coalescedTextType = DTM.TEXT_NODE;
2430 m_textType = DTM.TEXT_NODE;
H A DSAX2DTM2.java1592 } while (eType == TEXT_NODE
1605 } while(ATTRIBUTE_NODE == type || TEXT_NODE == type
2415 m_previous = addNode(m_coalescedTextType, DTM.TEXT_NODE,
2424 m_previous = addNode(m_coalescedTextType, DTM.TEXT_NODE,
2435 m_textType = m_coalescedTextType = DTM.TEXT_NODE;
2794 if (type == DTM.TEXT_NODE || type == DTM.CDATA_SECTION_NODE)
2833 else if (DTM.TEXT_NODE == type || DTM.CDATA_SECTION_NODE == type)
2907 if (type == DTM.TEXT_NODE || type == DTM.CDATA_SECTION_NODE)
2943 else if (DTM.TEXT_NODE == type || DTM.CDATA_SECTION_NODE == type)
2980 if ((_exptype2(child) == DTM.TEXT_NODE)
[all...]
/external/chromium_org/third_party/WebKit/Source/devtools/front_end/components/
H A DDOMPresentationUtils.js428 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/chromium_org/tools/valgrind/
H A Dmemcheck_analyze.py44 if node.nodeType == node.TEXT_NODE])
207 if n.nodeType == n.TEXT_NODE])
541 if x.nodeType == node.TEXT_NODE and "Command" in x.data:
/external/apache-xml/src/main/java/org/apache/xml/dtm/
H A DDTM.java110 public static final short TEXT_NODE = 3; field in interface:DTM
/external/chromium_org/testing/gtest/test/
H A Dgtest_xml_test_utils.py138 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
/external/chromium_org/third_party/WebKit/Source/bindings/v8/custom/
H A DV8NodeCustom.cpp136 case Node::TEXT_NODE:
/external/deqp/scripts/log/
H A Dlog_parser.py61 if node.nodeType == node.TEXT_NODE:
/external/gtest/test/
H A Dgtest_xml_test_utils.py138 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
/external/protobuf/gtest/test/
H A Dgtest_xml_test_utils.py133 elif child.nodeType in [Node.TEXT_NODE, Node.CDATA_SECTION_NODE]:
/external/apache-xml/src/main/java/org/apache/xml/utils/
H A DDOMBuilder.java201 if (type == Node.TEXT_NODE)
483 if( childNode != null && childNode.getNodeType() == Node.TEXT_NODE ){

Completed in 789 milliseconds

123