HomeSort by relevance Sort by last modified time
    Searched full:xobject (Results 1 - 25 of 122) sorted by null

1 2 3 4 5

  /external/apache-xml/src/main/java/org/apache/xpath/operations/
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);
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)
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
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
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)
Operation.java 27 import org.apache.xpath.objects.XObject;
101 * @return The XObject result of the operation.
105 public XObject execute(XPathContext xctxt)
109 XObject left = m_left.execute(xctxt, true);
110 XObject right = m_right.execute(xctxt, true);
112 XObject result = operate(left, right);
125 * @return non-null reference to the XObject that represents the result of the operation.
129 public XObject operate(XObject left, XObject right
    [all...]
UnaryOperation.java 27 import org.apache.xpath.objects.XObject;
89 * @return An XObject that represents the result of applying the unary
94 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
106 * @return non-null reference to the XObject that represents the result of the operation.
110 public abstract XObject operate(XObject right)
  /external/apache-xml/src/main/java/org/apache/xpath/objects/
XObjectFactory.java 35 * Create the right XObject based on the type of the object passed. This
36 * function can not make an XObject that exposes DOM Nodes, NodeLists, and
41 * @return the right XObject based on the type of the object passed.
43 static public XObject create(Object val)
46 XObject result;
48 if (val instanceof XObject)
50 result = (XObject) val;
66 result = new XObject(val);
73 * Create the right XObject based on the type of the object passed.
74 * This function <emph>can</emph> make an XObject that exposes DOM Nodes, NodeLists, and
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/
Arg.java 24 import org.apache.xpath.objects.XObject;
29 * XObject or a String containing an expression.
62 /** Field m_val: Stored XObject value of this argument
66 private XObject m_val;
71 * @return the argument's stored XObject value.
72 * @see #setVal(XObject)
74 public final XObject getVal()
82 * @param val an XObject representing the arguments's value.
85 public final void setVal(XObject val)
176 * value (either expression string or value XObject). isVisibl
    [all...]
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...]
XPathAPI.java 27 import org.apache.xpath.objects.XObject;
88 // Have the XObject return its result as a NodeSetDTM.
128 XObject list = eval(contextNode, str, namespaceNode);
130 // Have the XObject return its result as a NodeSetDTM.
167 XObject list = eval(contextNode, str, namespaceNode);
174 * Evaluate XPath string to an XObject. Using this method,
178 * @return An XObject, which can be used to obtain a string, number, nodelist, etc, should never be null.
179 * @see org.apache.xpath.objects.XObject
188 public static XObject eval(Node contextNode, String str)
195 * Evaluate XPath string to an XObject
    [all...]
  /external/apache-xml/src/main/java/org/apache/xpath/functions/
FuncQname.java 25 import org.apache.xpath.objects.XObject;
40 * @return A valid XObject.
44 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
48 XObject val;
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);
FuncNormalizeSpace.java 26 import org.apache.xpath.objects.XObject;
42 * @return A valid XObject.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
60 * @return The result of the expression in the form of a <code>XObject</code>.
81 XObject obj = execute(xctxt);

Completed in 238 milliseconds

1 2 3 4 5