Searched refs:XObject (Results 1 - 25 of 119) sorted by relevance

12345

/external/apache-xml/src/main/java/org/apache/xpath/operations/
H A DGt.java24 import org.apache.xpath.objects.XObject;
40 * @return non-null reference to the XObject that represents the result of the operation.
44 public XObject operate(XObject left, XObject right)
H A DGte.java24 import org.apache.xpath.objects.XObject;
40 * @return non-null reference to the XObject that represents the result of the operation.
44 public XObject operate(XObject left, XObject right)
H A DLt.java24 import org.apache.xpath.objects.XObject;
40 * @return non-null reference to the XObject that represents the result of the operation.
44 public XObject operate(XObject left, XObject right)
H A DLte.java24 import org.apache.xpath.objects.XObject;
40 * @return non-null reference to the XObject that represents the result of the operation.
44 public XObject operate(XObject left, XObject right)
H A DNotEquals.java24 import org.apache.xpath.objects.XObject;
40 * @return non-null reference to the XObject that represents the result of the operation.
44 public XObject operate(XObject left, XObject right)
H A DQuo.java24 import org.apache.xpath.objects.XObject;
43 * @return non-null reference to the XObject that represents the result of the operation.
47 public XObject operate(XObject left, XObject right)
H A DString.java23 import org.apache.xpath.objects.XObject;
39 * @return non-null reference to the XObject that represents the result of the operation.
43 public XObject operate(XObject right) throws javax.xml.transform.TransformerException
H A DEquals.java25 import org.apache.xpath.objects.XObject;
41 * @return non-null reference to the XObject that represents the result of the operation.
45 public XObject operate(XObject left, XObject right)
58 * @return The XObject result of the operation.
65 XObject left = m_left.execute(xctxt, true);
66 XObject right = m_right.execute(xctxt, true);
H A DBool.java25 import org.apache.xpath.objects.XObject;
40 * @return non-null reference to the XObject that represents the result of the operation.
44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException
47 if (XObject.CLASS_BOOLEAN == right.getType())
H A DDiv.java25 import org.apache.xpath.objects.XObject;
41 * @return non-null reference to the XObject that represents the result of the operation.
45 public XObject operate(XObject left, XObject right)
H A DMinus.java25 import org.apache.xpath.objects.XObject;
41 * @return non-null reference to the XObject that represents the
46 public XObject operate(XObject left, XObject right)
H A DMod.java25 import org.apache.xpath.objects.XObject;
41 * @return non-null reference to the XObject that represents the result of the operation.
45 public XObject operate(XObject left, XObject right)
H A DMult.java25 import org.apache.xpath.objects.XObject;
41 * @return non-null reference to the XObject that represents the result of the operation.
45 public XObject operate(XObject left, XObject right)
H A DNumber.java25 import org.apache.xpath.objects.XObject;
40 * @return non-null reference to the XObject that represents the result of the operation.
44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException
47 if (XObject.CLASS_NUMBER == right.getType())
H A DPlus.java25 import org.apache.xpath.objects.XObject;
41 * @return non-null reference to the XObject that represents the result of the operation.
45 public XObject operate(XObject left, XObject right)
H A DNeg.java25 import org.apache.xpath.objects.XObject;
40 * @return non-null reference to the XObject that represents the result of the operation.
44 public XObject operate(XObject right) throws javax.xml.transform.TransformerException
H A DAnd.java25 import org.apache.xpath.objects.XObject;
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
48 XObject expr1 = m_left.execute(xctxt);
52 XObject expr2 = m_right.execute(xctxt);
H A DOr.java25 import org.apache.xpath.objects.XObject;
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
48 XObject expr1 = m_left.execute(xctxt);
52 XObject expr2 = m_right.execute(xctxt);
/external/apache-xml/src/main/java/org/apache/xalan/templates/
H A DXUnresolvedVariableSimple.java25 import org.apache.xpath.objects.XObject;
35 public class XUnresolvedVariableSimple extends XObject
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/functions/
H A DFuncRound.java25 import org.apache.xpath.objects.XObject;
39 * @return A valid XObject.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
45 final XObject obj = m_arg0.execute(xctxt);
H A DFuncBoolean.java25 import org.apache.xpath.objects.XObject;
39 * @return A valid XObject.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
H A DFuncCeiling.java25 import org.apache.xpath.objects.XObject;
39 * @return A valid XObject.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
H A DFuncFalse.java25 import org.apache.xpath.objects.XObject;
39 * @return A valid XObject.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
H A DFuncFloor.java25 import org.apache.xpath.objects.XObject;
39 * @return A valid XObject.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
/external/apache-xml/src/main/java/org/apache/xpath/
H A DVariableStack.java26 import org.apache.xpath.objects.XObject;
76 vs._stackFrames = (XObject[]) _stackFrames.clone();
86 XObject[] _stackFrames;
120 public XObject elementAt(final int i)
170 _stackFrames = new XObject[varArraySize];
218 XObject newsf[] = new XObject[_stackFrames.length + XPathContext.RECURSIONLIMIT + size];
270 public void setLocalVariable(int index, XObject val)
285 public void setLocalVariable(int index, XObject val, int stackFrame)
304 public XObject getLocalVariabl
[all...]

Completed in 460 milliseconds

12345