HomeSort by relevance Sort by last modified time
    Searched full:nodetype (Results 76 - 100 of 239) sorted by null

1 2 34 5 6 7 8 910

  /frameworks/base/media/libdrm/mobile2/include/util/domcore/
NodeType.h 18 enum NodeType {
TextImpl.h 34 NodeType getNodeType() const;
DocumentImpl.h 21 #include "NodeType.h"
89 NodeType getNodeType() const;
  /frameworks/base/media/libdrm/mobile2/src/util/domcore/
DocumentImpl.cpp 69 NodeType DocumentImpl::getNodeType() const
  /external/webkit/WebCore/dom/
Text.cpp 89 Node::NodeType type = n->nodeType();
106 Node::NodeType type = n->nodeType();
191 Node::NodeType Text::nodeType() const
295 bool Text::childTypeAllowed(NodeType)
Node.idl 36 // NodeType
56 readonly attribute unsigned short nodeType;
Traversal.cpp 47 if (!(((1 << (node->nodeType() - 1)) & m_whatToShow)))
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM2.java 180 * only the immediate parent, _if_ it matches the requested nodeType.
228 * @param nodeType The extended type ID being requested.
230 public TypedChildrenIterator(int nodeType)
232 _nodeType = nodeType;
272 final int nodeType = _nodeType;
274 if (nodeType != DTM.ELEMENT_NODE) {
275 while (node != DTM.NULL && _exptype2(node) != nodeType) {
279 // %OPT% If the nodeType is element (matching child::*), we only
316 final int nodeType = _nodeType;
317 if (nodeType != DTM.ELEMENT_NODE)
    [all...]
  /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)
  /external/libxml2/include/libxml/
pattern.h 81 int nodeType);
  /external/tinyxml/docs/
functions_enum.html 12 <li>NodeType
  /external/webkit/JavaScriptCore/API/tests/
Node.h 39 const char* nodeType;
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
characterdataappenddatanomodificationallowederr.java 72 int nodeType;
78 nodeType = (int) entReference.getNodeType();
80 if (equals(1, nodeType)) {
characterdatadeletedatanomodificationallowederr.java 71 int nodeType;
78 nodeType = (int) entReference.getNodeType();
80 if (equals(3, nodeType)) {
characterdatainsertdatanomodificationallowederr.java 70 int nodeType;
78 nodeType = (int) entReference.getNodeType();
80 if (equals(1, nodeType)) {
characterdatareplacedatanomodificationallowederr.java 73 int nodeType;
79 nodeType = (int) entReference.getNodeType();
81 if (equals(1, nodeType)) {
characterdatasetdatanomodificationallowederr.java 72 int nodeType;
78 nodeType = (int) entReference.getNodeType();
80 if (equals(1, nodeType)) {
elementremoveattributenodenomodificationallowederr.java 73 int nodeType;
85 nodeType = (int) gen.getNodeType();
87 if (equals(1, nodeType)) {
elementremoveattributenomodificationallowederr.java 74 int nodeType;
82 nodeType = (int) gen.getNodeType();
84 if (equals(1, nodeType)) {
elementsetattributenodenomodificationallowederr.java 74 int nodeType;
81 nodeType = (int) entRef.getNodeType();
83 if (equals(1, nodeType)) {
hc_nodeappendchildchildexists.java 76 int nodeType;
101 nodeType = (int) memberNode.getNodeType();
103 if (equals(1, nodeType)) {
hc_nodeappendchilddocfragment.java 78 int nodeType;
101 nodeType = (int) child.getNodeType();
103 if (equals(1, nodeType)) {
hc_nodeinsertbefore.java 85 int nodeType;
95 nodeType = (int) child.getNodeType();
97 if (equals(1, nodeType)) {
nodeappendchildnomodificationallowederr.java 75 int nodeType;
81 nodeType = (int) entRef.getNodeType();
83 if (equals(1, nodeType)) {
nodeinsertbeforenomodificationallowederr.java 77 int nodeType;
83 nodeType = (int) entRef.getNodeType();
85 if (equals(1, nodeType)) {

Completed in 966 milliseconds

1 2 34 5 6 7 8 910