HomeSort by relevance Sort by last modified time
    Searched refs:nodeHandle (Results 1 - 16 of 16) sorted by null

  /libcore/luni/src/main/java/org/apache/xml/dtm/
DTM.java 230 * (dtm.getFirstChild(nodeHandle)!=DTM.NULL) is just as fast and
234 * @param nodeHandle int Handle of the node.
237 public boolean hasChildNodes(int nodeHandle);
242 * @param nodeHandle int Handle of the node.
246 public int getFirstChild(int nodeHandle);
251 * @param nodeHandle int Handle of the node.
255 public int getLastChild(int nodeHandle);
278 * @param nodeHandle int Handle of the node.
281 public int getFirstAttribute(int nodeHandle);
286 * @param nodeHandle handle to node, which should probably be an elemen
    [all...]
DTMFilter.java 150 * @param nodeHandle int Handle of the node.
154 public short acceptNode(int nodeHandle, int whatToShow);
179 * @param nodeHandle int Handle of the node.
186 public short acceptNode(int nodeHandle, int whatToShow, int expandedName);
DTMIterator.java 78 * @param nodeHandle the nodeHandle.
82 public DTM getDTM(int nodeHandle);
99 * @return nodeHandle int Handle of the context node.
109 * @param nodeHandle int Handle of the context node.
124 public void setRoot(int nodeHandle, Object environment);
DTMManager.java 190 * @param nodeHandle the nodeHandle.
194 public abstract DTM getDTM(int nodeHandle);
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/
DTMDocumentImpl.java 77 int m_docElement = NULL; // nodeHandle to the root of the actual dtm doc content
118 // each reference slot is addressed by a nodeHandle index value.
660 // m_docElement = NULL; // reset nodeHandle to the root of the actual dtm doc content
681 // * @return nodeHandle int of the element created
    [all...]
DTMDefaultBase.java 790 public String dumpNode(int nodeHandle)
792 if(nodeHandle==DTM.NULL)
796 switch (getNodeType(nodeHandle))
846 sb.append("["+nodeHandle+": "+typestring+
847 "(0x"+Integer.toHexString(getExpandedTypeID(nodeHandle))+") "+
848 getNodeNameX(nodeHandle)+" {"+getNamespaceURI(nodeHandle)+"}"+
849 "=\""+ getNodeValue(nodeHandle)+"\"]");
872 * (dtm.getFirstChild(nodeHandle)!=DTM.NULL) is just as fast and
876 * @param nodeHandle int Handle of the node
    [all...]
DTMManagerDefault.java 639 * @param nodeHandle DTM Handle indicating which node to retrieve
643 synchronized public DTM getDTM(int nodeHandle)
648 return m_dtms[nodeHandle >>> IDENT_DTM_NODE_BITS];
652 if(nodeHandle==DTM.NULL)
666 * @return The DTM ID (as the high bits of a NodeHandle, not as our
717 // Following shouldn't need a nodeHandle, but does...
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/dom2dtm/
DOM2DTM.java 600 * @param nodeHandle The node ID.
604 public Node getNode(int nodeHandle)
607 int identity = makeNodeIdentity(nodeHandle);
742 * @param nodeHandle int Handle of the node upon which to look up this attribute..
751 public int getAttributeNode(int nodeHandle, String namespaceURI,
759 int type = getNodeType(nodeHandle);
765 int identity = makeNodeIdentity(nodeHandle);
808 * @param nodeHandle The node ID.
812 public XMLString getStringValue(int nodeHandle)
815 int type = getNodeType(nodeHandle);
    [all...]
  /libcore/luni/src/main/java/org/apache/xml/dtm/ref/sax2dtm/
SAX2DTM.java 490 * @param nodeHandle The node ID.
499 public void dispatchCharactersEvents(int nodeHandle, ContentHandler ch,
504 int identity = makeNodeIdentity(nodeHandle);
586 * @param nodeHandle the id of the node.
591 public String getNodeName(int nodeHandle)
594 int expandedTypeID = getExpandedTypeID(nodeHandle);
602 int type = getNodeType(nodeHandle);
620 int qnameIndex = m_dataOrQName.elementAt(makeNodeIdentity(nodeHandle));
637 * @param nodeHandle the id of the node.
640 public String getNodeNameX(int nodeHandle)
    [all...]
SAX2RTFDTM.java 177 * @param nodeHandle the id of the node.
180 public int getDocumentRoot(int nodeHandle)
182 for (int id=makeNodeIdentity(nodeHandle); id!=NULL; id=_parent(id)) {
SAX2DTM2.java     [all...]
  /libcore/luni/src/main/java/org/apache/xpath/
XPathContext.java 165 * @param nodeHandle the nodeHandle.
169 public DTM getDTM(int nodeHandle)
171 return m_dtmManager.getDTM(nodeHandle);
    [all...]
NodeSetDTM.java 349 * @param nodeHandle the nodeHandle.
353 public DTM getDTM(int nodeHandle)
356 return m_manager.getDTM(nodeHandle);
    [all...]
  /libcore/luni/src/main/java/org/apache/xpath/axes/
NodeSequence.java 220 public DTM getDTM(int nodeHandle)
224 return getDTMManager().getDTM(nodeHandle);
259 public void setRoot(int nodeHandle, Object environment)
265 m_iter.setRoot(nodeHandle, environment);
LocPathIterator.java 172 * @param nodeHandle the nodeHandle.
176 public DTM getDTM(int nodeHandle)
179 return m_execContext.getDTM(nodeHandle);
  /libcore/luni/src/main/java/org/apache/xalan/transformer/
KeyTable.java 137 public void setRoot(int nodeHandle, Object environment) {

Completed in 795 milliseconds