Searched defs:xctxt (Results 1 - 25 of 100) sorted by relevance

1234

/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DFuncKey.java51 * @param xctxt The current execution context.
56 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
59 // TransformerImpl transformer = (TransformerImpl)xctxt;
60 TransformerImpl transformer = (TransformerImpl) xctxt.getOwnerObject();
62 int context = xctxt.getCurrentNode();
63 DTM dtm = xctxt.getDTM(context);
72 String xkeyname = getArg0().execute(xctxt).str();
73 QName keyname = new QName(xkeyname, xctxt.getNamespaceContext());
74 XObject arg = getArg1().execute(xctxt);
98 dtm = xctxt
[all...]
/external/apache-xml/src/main/java/org/apache/xpath/axes/
H A DSubContextList.java38 * @param xctxt The XPath runtime context.
42 public int getLastPos(XPathContext xctxt); argument
47 * @param xctxt The XPath runtime context.
51 public int getProximityPosition(XPathContext xctxt); argument
/external/apache-xml/src/main/java/org/apache/xpath/functions/
H A DFuncBoolean.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncCeiling.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
45 return new XNumber(Math.ceil(m_arg0.execute(xctxt).num()));
H A DFuncContains.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
46 String s1 = m_arg0.execute(xctxt).str();
47 String s2 = m_arg1.execute(xctxt).str();
H A DFuncCount.java39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 // DTMIterator nl = m_arg0.asIterator(xctxt, xctxt.getCurrentNode());
58 DTMIterator nl = m_arg0.asIterator(xctxt, xctxt.getCurrentNode());
H A DFuncDoclocation.java40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
48 int whereNode = getArg0AsNode(xctxt);
53 DTM dtm = xctxt.getDTM(whereNode);
65 // fileLocation = xctxt.getSourceTreeManager().findURIFromDoc(owner);
H A DFuncExtElementAvailable.java42 * @param xctxt The current execution context.
47 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
54 String fullName = m_arg0.execute(xctxt).str();
66 namespace = xctxt.getNamespaceContext().getNamespaceForPrefix(prefix);
77 TransformerImpl transformer = (TransformerImpl) xctxt.getOwnerObject();
90 ExtensionsProvider extProvider = (ExtensionsProvider)xctxt.getOwnerObject();
H A DFuncFloor.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
45 return new XNumber(java.lang.Math.floor(m_arg0.execute(xctxt).num()));
H A DFuncGenerateId.java39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 int which = getArg0AsNode(xctxt);
H A DFuncLang.java39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 String lang = m_arg0.execute(xctxt).str();
48 int parent = xctxt.getCurrentNode();
50 DTM dtm = xctxt.getDTM(parent);
H A DFuncLocalPart.java39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 int context = getArg0AsNode(xctxt);
50 DTM dtm = xctxt.getDTM(context);
H A DFuncNamespace.java39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 int context = getArg0AsNode(xctxt);
52 DTM dtm = xctxt.getDTM(context);
H A DFuncNormalizeSpace.java41 * @param xctxt The current execution context.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
48 XMLString s1 = getArg0AsString(xctxt);
58 * @param xctxt The XPath runtime context.
65 public void executeCharsToContentHandler(XPathContext xctxt, argument
72 int node = getArg0AsNode(xctxt);
75 DTM dtm = xctxt.getDTM(node);
81 XObject obj = execute(xctxt);
H A DFuncNot.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
45 return m_arg0.execute(xctxt).bool() ? XBoolean.S_FALSE : XBoolean.S_TRUE;
H A DFuncNumber.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
45 return new XNumber(getArg0AsNumber(xctxt));
H A DFuncQname.java39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 int context = getArg0AsNode(xctxt);
52 DTM dtm = xctxt.getDTM(context);
H A DFuncRound.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
45 final XObject obj = m_arg0.execute(xctxt);
H A DFuncStartsWith.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
45 return m_arg0.execute(xctxt).xstr().startsWith(m_arg1.execute(xctxt).xstr())
H A DFuncString.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
45 return (XString)getArg0AsString(xctxt);
H A DFuncStringLength.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
45 return new XNumber(getArg0AsString(xctxt).length());
H A DFuncSubstringAfter.java39 * @param xctxt The current execution context.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 XMLString s1 = m_arg0.execute(xctxt).xstr();
48 XMLString s2 = m_arg1.execute(xctxt).xstr();
H A DFuncSubstringBefore.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
46 String s1 = m_arg0.execute(xctxt).str();
47 String s2 = m_arg1.execute(xctxt).str();
H A DFuncSum.java41 * @param xctxt The current execution context.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
49 DTMIterator nodes = m_arg0.asIterator(xctxt, xctxt.getCurrentNode());
H A DFuncTranslate.java38 * @param xctxt The current execution context.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
46 String theFirstString = m_arg0.execute(xctxt).str();
47 String theSecondString = m_arg1.execute(xctxt).str();
48 String theThirdString = m_arg2.execute(xctxt).str();

Completed in 213 milliseconds

1234