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

1 2 3 4 5 6 7 8

  /frameworks/base/media/libdrm/mobile2/include/util/domcore/
TextImpl.h 33 /** Override getNodeType method in NodeImpl.h */
34 NodeType getNodeType() const;
DocumentImpl.h 88 /** Override getNodeType method in NodeImpl.h.*/
89 NodeType getNodeType() const;
ElementImpl.h 94 /** Override getNodeType() method in NodeImpl.h.*/
100 /** Override getNodeType() method in NodeImpl.h.*/
101 NodeType getNodeType() const;
  /dalvik/libcore/xml/src/main/java/org/apache/harmony/xml/dom/
DocumentFragmentImpl.java 45 public short getNodeType() {
CommentImpl.java 44 public short getNodeType() {
EntityReferenceImpl.java 47 public short getNodeType() {
NotationImpl.java 51 public short getNodeType() {
TextImpl.java 45 public short getNodeType() {
118 short nodeType = p.getNodeType();
138 short nodeType = nextSibling.getNodeType();
163 if (previous == null || previous.getNodeType() != Node.TEXT_NODE) {
  /frameworks/base/media/libdrm/mobile2/src/util/domcore/
TextImpl.cpp 31 NodeType TextImpl::getNodeType() const
ElementImpl.cpp 19 NodeType ElementImpl::getNodeType() const
64 if (node->getNodeType() == ELEMENT_NODE) {
  /dalvik/libcore/dom/src/test/java/org/w3c/domts/level1/core/
nodeentityreferencenodetype.java 31 * The "getNodeType()" method for an EntityReference Node
35 * of the second employee and invoke the "getNodeType()"
72 nodeType = (int) entRefNode.getNodeType();
77 nodeType = (int) entRefNode.getNodeType();
hc_nodedocumentnodetype.java 31 * The "getNodeType()" method for a Document Node
33 * Retrieve the document and invoke the "getNodeType()"
64 nodeType = (int) doc.getNodeType();
nodedocumentnodetype.java 31 * The "getNodeType()" method for a Document Node
33 * Retrieve the document and invoke the "getNodeType()"
65 nodeType = (int) doc.getNodeType();
hc_elementgetelementsbytagnameaccessnodelist.java 80 nodeType = (int) firstC.getNodeType();
84 nodeType = (int) firstC.getNodeType();
hc_nodecommentnodetype.java 31 * The "getNodeType()" method for a Comment Node
35 * a comment node and invoke the "getNodeType()" method. This should
76 nodeType = (int) commentNode.getNodeType();
81 nodeType = (int) commentNode.getNodeType();
nodecdatasectionnodetype.java 31 * The "getNodeType()" method for a CDATASection Node
36 * "getNodeType()" method. The method should return 4.
79 nodeType = (int) cdataNode.getNodeType();
83 nodeType = (int) cdataNode.getNodeType();
documentcreateattribute.java 76 attrType = (int) newAttrNode.getNodeType();
documentcreatecdatasection.java 75 newCDATASectionType = (int) newCDATASectionNode.getNodeType();
documentcreatecomment.java 74 newCommentType = (int) newCommentNode.getNodeType();
documentcreateelement.java 73 newElementType = (int) newElement.getNodeType();
documentcreateentityreference.java 79 entRefType = (int) newEntRefNode.getNodeType();
documentcreateprocessinginstruction.java 82 piType = (int) newPINode.getNodeType();
documentcreatetextnode.java 74 newTextType = (int) newTextNode.getNodeType();
  /dalvik/libcore/xml/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 143 if(ELEMENT_NODE == m_root.getNodeType())
215 type = node.getNodeType();
353 if(next!=null && DOCUMENT_TYPE_NODE==next.getNodeType())
358 if(ENTITY_REFERENCE_NODE!=pos.getNodeType())
391 if(next!=null && DOCUMENT_TYPE_NODE==next.getNodeType())
412 if(pos!=null && ENTITY_REFERENCE_NODE == pos.getNodeType())
434 nexttype=next.getNodeType();
481 nexttype=next.getNodeType();
483 // nexttype=pos.getNodeType();
496 if(TEXT_NODE == n.getNodeType())
    [all...]
DOM2DTMdefaultNamespaceDeclarationNode.java 89 public short getNodeType() {return Node.ATTRIBUTE_NODE;}
237 if (arg.getNodeType() != getNodeType()) {
310 short type = this.getNodeType();
372 if (this.getOwnerElement().getNodeType() == Node.ELEMENT_NODE) {
403 short type = this.getNodeType();
445 if (this.ownerNode.getNodeType() == Node.ELEMENT_NODE) {
482 short type = this.getNodeType();
503 if (this.getOwnerElement().getNodeType() == Node.ELEMENT_NODE) {

Completed in 265 milliseconds

1 2 3 4 5 6 7 8