HomeSort by relevance Sort by last modified time
    Searched refs:XObject (Results 1 - 25 of 113) sorted by null

1 2 3 4 5

  /external/apache-xml/src/main/java/org/apache/xpath/operations/
Gt.java 24 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)
Gte.java 24 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)
Lt.java 24 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)
Lte.java 24 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)
NotEquals.java 24 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)
Quo.java 24 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)
String.java 23 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
Equals.java 25 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);
Bool.java 25 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())
Div.java 25 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)
Minus.java 25 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)
Mod.java 25 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)
Mult.java 25 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)
Number.java 25 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())
Plus.java 25 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)
Neg.java 25 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
And.java 25 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);
Or.java 25 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/
XUnresolvedVariableSimple.java 25 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/
VariableStack.java 26 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 getLocalVariable(XPathContext xctxt, int index
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncRound.java 25 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);
FuncBoolean.java 25 import org.apache.xpath.objects.XObject;
39 * @return A valid XObject.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
FuncCeiling.java 25 import org.apache.xpath.objects.XObject;
39 * @return A valid XObject.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
FuncFalse.java 25 import org.apache.xpath.objects.XObject;
39 * @return A valid XObject.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
FuncFloor.java 25 import org.apache.xpath.objects.XObject;
39 * @return A valid XObject.
43 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException

Completed in 115 milliseconds

1 2 3 4 5