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

1234

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/axes/
H A DChildIterator.java65 * @param xctxt The XPath runtime context.
68 public int asNode(XPathContext xctxt) argument
71 int current = xctxt.getCurrentNode();
73 DTM dtm = xctxt.getDTM(current);
H A DSelfIteratorNoPredicate.java107 * @param xctxt The XPath runtime context.
110 public int asNode(XPathContext xctxt) argument
113 return xctxt.getCurrentNode();
120 * @param xctxt XPath runtime context.
124 public int getLastPos(XPathContext xctxt) argument
H A DSubContextList.java40 * @param xctxt The XPath runtime context.
44 public int getLastPos(XPathContext xctxt); argument
49 * @param xctxt The XPath runtime context.
53 public int getProximityPosition(XPathContext xctxt); argument
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncBoolean.java40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 return m_arg0.execute(xctxt).bool() ? XBoolean.S_TRUE : XBoolean.S_FALSE;
H A DFuncCeiling.java40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 return new XNumber(Math.ceil(m_arg0.execute(xctxt).num()));
H A DFuncConcat.java41 * @param xctxt The current execution context.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
52 sb.append(m_arg0.execute(xctxt).str());
53 sb.append(m_arg1.execute(xctxt).str());
56 sb.append(m_arg2.execute(xctxt).str());
62 sb.append(m_args[i].execute(xctxt).str());
H A DFuncContains.java40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
48 String s1 = m_arg0.execute(xctxt).str();
49 String s2 = m_arg1.execute(xctxt).str();
H A DFuncCount.java41 * @param xctxt The current execution context.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
49 // DTMIterator nl = m_arg0.asIterator(xctxt, xctxt.getCurrentNode());
60 DTMIterator nl = m_arg0.asIterator(xctxt, xctxt.getCurrentNode());
H A DFuncCurrent.java49 * @param xctxt The current execution context.
54 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
57 SubContextList subContextList = xctxt.getCurrentNodeList();
71 currentNode = xctxt.getContextNode();
73 return new XNodeSet(currentNode, xctxt.getDTMManager());
H A DFuncDoclocation.java42 * @param xctxt The current execution context.
47 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
50 int whereNode = getArg0AsNode(xctxt);
55 DTM dtm = xctxt.getDTM(whereNode);
67 // fileLocation = xctxt.getSourceTreeManager().findURIFromDoc(owner);
H A DFuncExtElementAvailable.java47 * @param xctxt The current execution context.
52 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
59 String fullName = m_arg0.execute(xctxt).str();
71 namespace = xctxt.getNamespaceContext().getNamespaceForPrefix(prefix);
83 TransformerImpl transformer = (TransformerImpl) xctxt.getOwnerObject();
94 ExtensionsProvider extProvider = (ExtensionsProvider)xctxt.getOwnerObject();
H A DFuncExtFunctionAvailable.java45 * @param xctxt The current execution context.
50 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
57 String fullName = m_arg0.execute(xctxt).str();
69 namespace = xctxt.getNamespaceContext().getNamespaceForPrefix(prefix);
90 ExtensionsProvider extProvider = (ExtensionsProvider)xctxt.getOwnerObject();
H A DFuncFalse.java40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
H A DFuncFloor.java40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 return new XNumber(java.lang.Math.floor(m_arg0.execute(xctxt).num()));
H A DFuncGenerateId.java41 * @param xctxt The current execution context.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
49 int which = getArg0AsNode(xctxt);
H A DFuncLang.java41 * @param xctxt The current execution context.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
49 String lang = m_arg0.execute(xctxt).str();
50 int parent = xctxt.getCurrentNode();
52 DTM dtm = xctxt.getDTM(parent);
H A DFuncLocalPart.java41 * @param xctxt The current execution context.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
49 int context = getArg0AsNode(xctxt);
52 DTM dtm = xctxt.getDTM(context);
H A DFuncNamespace.java41 * @param xctxt The current execution context.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
49 int context = getArg0AsNode(xctxt);
54 DTM dtm = xctxt.getDTM(context);
H A DFuncNormalizeSpace.java43 * @param xctxt The current execution context.
48 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
50 XMLString s1 = getArg0AsString(xctxt);
60 * @param xctxt The XPath runtime context.
67 public void executeCharsToContentHandler(XPathContext xctxt, argument
74 int node = getArg0AsNode(xctxt);
77 DTM dtm = xctxt.getDTM(node);
83 XObject obj = execute(xctxt);
H A DFuncNot.java40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 return m_arg0.execute(xctxt).bool() ? XBoolean.S_FALSE : XBoolean.S_TRUE;
H A DFuncNumber.java40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 return new XNumber(getArg0AsNumber(xctxt));
H A DFuncQname.java41 * @param xctxt The current execution context.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
49 int context = getArg0AsNode(xctxt);
54 DTM dtm = xctxt.getDTM(context);
H A DFuncRound.java40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 final XObject obj = m_arg0.execute(xctxt);
H A DFuncStartsWith.java40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 return m_arg0.execute(xctxt).xstr().startsWith(m_arg1.execute(xctxt).xstr())
H A DFuncString.java40 * @param xctxt The current execution context.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException argument
47 return (XString)getArg0AsString(xctxt);

Completed in 332 milliseconds

1234