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

12345

/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/operations/
H A DEquals.java27 import com.sun.org.apache.xpath.internal.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)
60 * @return The XObject result of the operation.
67 XObject left = m_left.execute(xctxt, true);
68 XObject right = m_right.execute(xctxt, true);
H A DString.java25 import com.sun.org.apache.xpath.internal.objects.XObject;
41 * @return non-null reference to the XObject that represents the result of the operation.
45 public XObject operate(XObject right) throws javax.xml.transform.TransformerException
H A DGt.java26 import com.sun.org.apache.xpath.internal.objects.XObject;
42 * @return non-null reference to the XObject that represents the result of the operation.
46 public XObject operate(XObject left, XObject right)
H A DGte.java26 import com.sun.org.apache.xpath.internal.objects.XObject;
42 * @return non-null reference to the XObject that represents the result of the operation.
46 public XObject operate(XObject left, XObject right)
H A DLt.java26 import com.sun.org.apache.xpath.internal.objects.XObject;
42 * @return non-null reference to the XObject that represents the result of the operation.
46 public XObject operate(XObject left, XObject right)
H A DLte.java26 import com.sun.org.apache.xpath.internal.objects.XObject;
42 * @return non-null reference to the XObject that represents the result of the operation.
46 public XObject operate(XObject left, XObject right)
H A DNotEquals.java26 import com.sun.org.apache.xpath.internal.objects.XObject;
42 * @return non-null reference to the XObject that represents the result of the operation.
46 public XObject operate(XObject left, XObject right)
H A DQuo.java26 import com.sun.org.apache.xpath.internal.objects.XObject;
45 * @return non-null reference to the XObject that represents the result of the operation.
49 public XObject operate(XObject left, XObject right)
H A DNeg.java27 import com.sun.org.apache.xpath.internal.objects.XObject;
42 * @return non-null reference to the XObject that represents the result of the operation.
46 public XObject operate(XObject right) throws javax.xml.transform.TransformerException
H A DAnd.java27 import com.sun.org.apache.xpath.internal.objects.XObject;
47 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
50 XObject expr1 = m_left.execute(xctxt);
54 XObject expr2 = m_right.execute(xctxt);
H A DBool.java27 import com.sun.org.apache.xpath.internal.objects.XObject;
42 * @return non-null reference to the XObject that represents the result of the operation.
46 public XObject operate(XObject right) throws javax.xml.transform.TransformerException
49 if (XObject.CLASS_BOOLEAN == right.getType())
H A DDiv.java27 import com.sun.org.apache.xpath.internal.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 DMinus.java27 import com.sun.org.apache.xpath.internal.objects.XObject;
43 * @return non-null reference to the XObject that represents the
48 public XObject operate(XObject left, XObject right)
H A DMod.java27 import com.sun.org.apache.xpath.internal.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 DMult.java27 import com.sun.org.apache.xpath.internal.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 DNumber.java27 import com.sun.org.apache.xpath.internal.objects.XObject;
42 * @return non-null reference to the XObject that represents the result of the operation.
46 public XObject operate(XObject right) throws javax.xml.transform.TransformerException
49 if (XObject.CLASS_NUMBER == right.getType())
H A DOr.java27 import com.sun.org.apache.xpath.internal.objects.XObject;
47 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
50 XObject expr1 = m_left.execute(xctxt);
54 XObject expr2 = m_right.execute(xctxt);
H A DPlus.java27 import com.sun.org.apache.xpath.internal.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)
/openjdk7/jdk/src/share/classes/sun/tools/jconsole/inspector/
H A DXObject.java36 public class XObject extends JLabel { class in inherits:JLabel
39 public final static XObject NULL_OBJECT = new XObject("null");
40 public XObject (Object object, Icon icon) { method in class:XObject
45 public XObject (Object object) { method in class:XObject
52 if (o instanceof XObject) {
53 return object.equals(((XObject)o).getObject());
71 XObject.useHashCodeRepresentation = useHashCodeRepresentation;
109 System.out.println("Error setting XObject object :"+
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/
H A DVariableStack.java28 import com.sun.org.apache.xpath.internal.objects.XObject;
67 vs._stackFrames = (XObject[]) _stackFrames.clone();
77 XObject[] _stackFrames = new XObject[XPathContext.RECURSIONLIMIT * 2];
111 public XObject elementAt(final int i)
141 _stackFrames = new XObject[_stackFrames.length];
189 XObject newsf[] = new XObject[_stackFrames.length + XPathContext.RECURSIONLIMIT + size];
241 public void setLocalVariable(int index, XObject val)
256 public void setLocalVariable(int index, XObject va
[all...]
H A DArg.java27 import com.sun.org.apache.xpath.internal.objects.XObject;
32 * XObject or a String containing an expression.
65 /** Field m_val: Stored XObject value of this argument
69 private XObject m_val;
74 * @return the argument's stored XObject value.
75 * @see #setVal(XObject)
77 public final XObject getVal()
85 * @param val an XObject representing the arguments's value.
88 public final void setVal(XObject val)
179 * value (either expression string or value XObject)
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/functions/
H A DFuncQname.java27 import com.sun.org.apache.xpath.internal.objects.XObject;
42 * @return A valid XObject.
46 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
50 XObject val;
H A DFuncRound.java27 import com.sun.org.apache.xpath.internal.objects.XObject;
41 * @return A valid XObject.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
47 final XObject obj = m_arg0.execute(xctxt);
H A DFuncBoolean.java27 import com.sun.org.apache.xpath.internal.objects.XObject;
41 * @return A valid XObject.
45 public XObject execute(XPathContext xctxt) throws javax.xml.transform.TransformerException
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/objects/
H A DXBoolean.java30 public class XBoolean extends XObject
151 public boolean equals(XObject obj2)
157 if (obj2.getType() == XObject.CLASS_NODESET)

Completed in 89 milliseconds

12345