HomeSort by relevance Sort by last modified time
    Searched refs:TEXT_NODE (Results 1 - 25 of 73) sorted by null

1 2 3

  /frameworks/base/media/libdrm/mobile2/include/util/domcore/
NodeType.h 30 TEXT_NODE = 3,
  /frameworks/base/media/libdrm/mobile2/src/util/domcore/
TextImpl.cpp 33 return TEXT_NODE;
  /dalvik/libcore/xml/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 165 case TEXT_NODE:
365 case TEXT_NODE:
433 case TEXT_NODE:
472 case TEXT_NODE:
  /external/webkit/WebCore/dom/
DocumentFragment.cpp 54 case TEXT_NODE:
StyleElement.cpp 67 if (nodeType == Node::TEXT_NODE || nodeType == Node::CDATA_SECTION_NODE || nodeType == Node::COMMENT_NODE)
76 if (nodeType == Node::TEXT_NODE || nodeType == Node::CDATA_SECTION_NODE || nodeType == Node::COMMENT_NODE) {
Text.cpp 90 if (type == Node::TEXT_NODE || type == Node::CDATA_SECTION_NODE) {
107 if (type == Node::TEXT_NODE || type == Node::CDATA_SECTION_NODE) {
193 return TEXT_NODE;
OptionElement.cpp 88 if (n->nodeType() == Node::TEXT_NODE || n->nodeType() == Node::CDATA_SECTION_NODE)
Range.cpp 626 if (startNodeType == Node::TEXT_NODE || startNodeType == Node::CDATA_SECTION_NODE || startNodeType == Node::COMMENT_NODE) {
690 if (startNodeType == Node::TEXT_NODE || startNodeType == Node::CDATA_SECTION_NODE || startNodeType == Node::COMMENT_NODE) {
756 if (endNodeType == Node::TEXT_NODE || endNodeType == Node::CDATA_SECTION_NODE || endNodeType == Node::COMMENT_NODE) {
    [all...]
Attr.cpp 148 case TEXT_NODE:
  /external/webkit/WebCore/xml/
XPathUtil.cpp 48 case Node::TEXT_NODE:
90 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/webkit/WebCore/inspector/front-end/
TextPrompt.js 276 if (node.nodeType === Node.TEXT_NODE && selectionRange.startOffset < node.nodeValue.length)
281 if (node.nodeType === Node.TEXT_NODE && node.nodeValue.length) {
297 if (!focusNode || focusNode.nodeType !== Node.TEXT_NODE || focusNode.parentNode !== this.element)
305 if (focusNode.nodeType !== Node.TEXT_NODE)
319 if (!focusNode || focusNode.nodeType !== Node.TEXT_NODE || focusNode.parentNode !== this.element)
327 if (focusNode.nodeType !== Node.TEXT_NODE)
utilities.js 80 if (node.nodeType === Node.TEXT_NODE) {
115 if (node.nodeType === Node.TEXT_NODE) {
134 endOffset = stayWithinNode.nodeType === Node.TEXT_NODE ? stayWithinNode.nodeValue.length : stayWithinNode.childNodes.length;
154 while (node && node.nodeType !== Node.TEXT_NODE)
370 if (!this || this.nodeType !== Node.TEXT_NODE)
427 case Node.TEXT_NODE:
515 if (!firstChild || firstChild.nodeType !== Node.TEXT_NODE)
  /external/webkit/WebCore/html/
HTMLTitleElement.cpp 60 if (c->nodeType() == TEXT_NODE || c->nodeType() == CDATA_SECTION_NODE)
  /external/webkit/WebKitTools/Scripts/
update-sources-list.py 55 if node.nodeType == node.TEXT_NODE:
  /dalvik/libcore/xml/src/main/java/org/apache/xalan/transformer/
ClonerToResultTree.java 61 // case DTM.TEXT_NODE :
142 case DTM.TEXT_NODE :
  /dalvik/libcore/xml/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...]
  /dalvik/libcore/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...]
  /dalvik/libcore/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...]
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/
DTM.java 110 public static final short TEXT_NODE = 3;
    [all...]
  /external/gtest/test/
gtest_xml_test_utils.py 122 elif child.nodeType == Node.TEXT_NODE:
  /external/webkit/WebCore/inspector/
InspectorDOMAgent.cpp 343 if (node && (node->nodeType() == Node::TEXT_NODE)) {
344 Text* text_node = static_cast<Text*>(node); local
346 text_node->replaceWholeText(value, ec);
444 case Node::TEXT_NODE:
520 if (child->nodeType() == Node::TEXT_NODE)
600 return node && node->nodeType() == Node::TEXT_NODE && node->nodeValue().stripWhiteSpace().length() == 0;
  /frameworks/base/media/libdrm/mobile2/src/util/xml/
DomExpatAgent.cpp 219 } else if (what == TEXT_NODE)

Completed in 511 milliseconds

1 2 3