Home
last modified time | relevance | path

Searched refs:SubContextList (Results 1 – 7 of 7) sorted by relevance

/external/apache-xml/src/main/java/org/apache/xpath/functions/
DFuncLast.java25 import org.apache.xpath.axes.SubContextList;
65 SubContextList iter = m_isTopLevel ? null : xctxt.getSubContextList(); in getCountOfContextNodeList()
DFuncCurrent.java30 import org.apache.xpath.axes.SubContextList;
55 SubContextList subContextList = xctxt.getCurrentNodeList(); in execute()
DFuncPosition.java26 import org.apache.xpath.axes.SubContextList;
62 SubContextList iter = m_isTopLevel ? null : xctxt.getSubContextList(); in getPositionInContextNodeList()
/external/apache-xml/src/main/java/org/apache/xpath/
DXPathContext.java49 import org.apache.xpath.axes.SubContextList;
982 public final void pushSubContextList(SubContextList iter) in pushSubContextList()
1002 public SubContextList getSubContextList() in getSubContextList()
1005 ? null : (SubContextList) m_axesIteratorStack.peek(); in getSubContextList()
1016 public org.apache.xpath.axes.SubContextList getCurrentNodeList() in getCurrentNodeList()
1019 ? null : (SubContextList) m_axesIteratorStack.elementAt(0); in getCurrentNodeList()
/external/apache-xml/src/main/java/org/apache/xpath/axes/
DSubContextList.java30 public interface SubContextList interface
DPredicatedNodeTest.java34 public abstract class PredicatedNodeTest extends NodeTest implements SubContextList
/external/apache-xml/src/main/java/org/apache/xpath/patterns/
DStepPattern.java31 import org.apache.xpath.axes.SubContextList;
39 public class StepPattern extends NodeTest implements SubContextList, ExpressionOwner