HomeSort by relevance Sort by last modified time
    Searched refs:xctxt (Results 26 - 50 of 123) sorted by null

12 3 4 5

  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncFloor.java 38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
45 return new XNumber(java.lang.Math.floor(m_arg0.execute(xctxt).num()));
FuncNot.java 38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_FALSE : XBoolean.S_TRUE;
FuncNumber.java 38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
45 return new XNumber(getArg0AsNumber(xctxt));
FuncString.java 38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
45 return (XString)getArg0AsString(xctxt);
FuncStringLength.java 38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
45 return new XNumber(getArg0AsString(xctxt).length());
FuncLast.java 53 * @param xctxt non-null reference to XPath runtime context.
59 public int getCountOfContextNodeList(XPathContext xctxt)
65 SubContextList iter = m_isTopLevel ? null : xctxt.getSubContextList();
69 return iter.getLastPos(xctxt);
71 DTMIterator cnl = xctxt.getContextNodeList();
86 * @param xctxt The current execution context.
91 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
93 XNumber xnum = new XNumber((double) getCountOfContextNodeList(xctxt));
FuncNormalizeSpace.java 41 * @param xctxt The current execution context.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
48 XMLString s1 = getArg0AsString(xctxt);
58 * @param xctxt The XPath runtime context.
65 public void executeCharsToContentHandler(XPathContext xctxt,
72 int node = getArg0AsNode(xctxt);
75 DTM dtm = xctxt.getDTM(node);
81 XObject obj = execute(xctxt);
FuncConcat.java 39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
50 sb.append(m_arg0.execute(xctxt).str());
51 sb.append(m_arg1.execute(xctxt).str());
54 sb.append(m_arg2.execute(xctxt).str());
60 sb.append(m_args[i].execute(xctxt).str());
FuncContains.java 38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
46 String s1 = m_arg0.execute(xctxt).str();
47 String s2 = m_arg1.execute(xctxt).str();
FuncDoclocation.java 40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
48 int whereNode = getArg0AsNode(xctxt);
53 DTM dtm = xctxt.getDTM(whereNode);
65 // fileLocation = xctxt.getSourceTreeManager().findURIFromDoc(owner);
FuncLocalPart.java 39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
47 int context = getArg0AsNode(xctxt);
50 DTM dtm = xctxt.getDTM(context);
FuncQname.java 39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
47 int context = getArg0AsNode(xctxt);
52 DTM dtm = xctxt.getDTM(context);
FuncSubstringAfter.java 39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
47 XMLString s1 = m_arg0.execute(xctxt).xstr();
48 XMLString s2 = m_arg1.execute(xctxt).xstr();
FuncSum.java 41 * @param xctxt The current execution context.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
49 DTMIterator nodes = m_arg0.asIterator(xctxt, xctxt.getCurrentNode());
FuncGenerateId.java 39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
47 int which = getArg0AsNode(xctxt);
FuncRound.java 38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
45 final XObject obj = m_arg0.execute(xctxt);
  /external/apache-xml/src/main/java/org/apache/xalan/templates/
ElemForEach.java 285 * @param xctxt The XPath runtime state for the sort.
294 XPathContext xctxt, Vector keys, DTMIterator sourceNodes)
298 NodeSorter sorter = new NodeSorter(xctxt);
301 xctxt.pushContextNodeList(sourceNodes);
305 sorter.sort(sourceNodes, keys, xctxt);
310 xctxt.popContextNodeList();
328 final XPathContext xctxt = transformer.getXPathContext(); local
329 final int sourceNode = xctxt.getCurrentNode();
330 DTMIterator sourceNodes = m_selectExpression.asIterator(xctxt,
342 sourceNodes = sortNodes(xctxt, keys, sourceNodes)
    [all...]
ElemApplyTemplates.java 199 final XPathContext xctxt = transformer.getXPathContext(); local
200 final int sourceNode = xctxt.getCurrentNode();
201 DTMIterator sourceNodes = m_selectExpression.asIterator(xctxt, sourceNode);
202 VariableStack vars = xctxt.getVarStack();
211 xctxt.pushCurrentNode(DTM.NULL);
212 xctxt.pushCurrentExpressionNode(DTM.NULL);
213 xctxt.pushSAXLocatorNull();
221 sourceNodes = sortNodes(xctxt, keys, sourceNodes);
230 DTM dtm = xctxt.getDTM(sourceNode);
251 xctxt.pushContextNodeList(sourceNodes)
    [all...]
XUnresolvedVariableSimple.java 47 * @param xctxt The XPath execution context.
53 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
56 XObject xobj = expr.execute(xctxt);
  /external/apache-xml/src/main/java/org/apache/xpath/axes/
SelfIteratorNoPredicate.java 104 * @param xctxt The XPath runtime context.
107 public int asNode(XPathContext xctxt)
110 return xctxt.getCurrentNode();
117 * @param xctxt XPath runtime context.
121 public int getLastPos(XPathContext xctxt)
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
DTMXRTreeFrag.java 35 public DTMXRTreeFrag(int dtmIdentity, XPathContext xctxt){
36 m_xctxt = xctxt;
38 m_dtm = xctxt.getDTM(dtmIdentity);
XNodeSetForDOM.java 61 public XNodeSetForDOM(NodeList nodeList, XPathContext xctxt)
63 m_dtmMgr = xctxt.getDTMManager();
69 // m_obj=new org.apache.xpath.NodeSetDTM(nodeList, xctxt);
70 org.apache.xpath.NodeSetDTM nsdtm=new org.apache.xpath.NodeSetDTM(nodeList, xctxt);
75 public XNodeSetForDOM(NodeIterator nodeIter, XPathContext xctxt)
77 m_dtmMgr = xctxt.getDTMManager();
83 // m_obj = new org.apache.xpath.NodeSetDTM(nodeIter, xctxt);
84 org.apache.xpath.NodeSetDTM nsdtm=new org.apache.xpath.NodeSetDTM(nodeIter, xctxt);
  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Equals.java 56 * @param xctxt The runtime execution context.
62 public boolean bool(XPathContext xctxt)
65 XObject left = m_left.execute(xctxt, true);
66 XObject right = m_right.execute(xctxt, true);
Bool.java 56 * @param xctxt The runtime execution context.
62 public boolean bool(XPathContext xctxt)
65 return m_right.bool(xctxt);
Neg.java 52 * @param xctxt The runtime execution context.
58 public double num(XPathContext xctxt)
62 return -(m_right.num(xctxt));

Completed in 940 milliseconds

12 3 4 5