Searched refs:DoubleValue (Results 1 - 15 of 15) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DDoubleValue.java37 public interface DoubleValue extends PrimitiveValue, Comparable<DoubleValue> interface in inherits:PrimitiveValue,Comparable
40 * Returns this DoubleValue as a <code>double</code>.
47 * Compares the specified Object with this DoubleValue for equality.
49 * @return true if the Object is a DoubleValue and if applying "=="
56 * Returns the hash code value for this DoubleValue.
H A DVirtualMachine.java372 * Creates a {@link DoubleValue} for the given value. This value
377 * @return the {@link DoubleValue} for the given double.
379 DoubleValue mirrorOf(double value);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DDoubleValueImpl.java30 implements DoubleValue {
40 if ((obj != null) && (obj instanceof DoubleValue)) {
41 return (value == ((DoubleValue)obj).value()) &&
48 public int compareTo(DoubleValue doubleVal) {
H A DVirtualMachineImpl.java556 public DoubleValue mirrorOf(double value) {
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DDoubleValueImpl.java31 implements DoubleValue {
41 if ((obj != null) && (obj instanceof DoubleValue)) {
42 return (value == ((DoubleValue)obj).value()) &&
49 public int compareTo(DoubleValue obj) {
H A DPacketStream.java254 if(!(val instanceof DoubleValue))
H A DVirtualMachineImpl.java507 public DoubleValue mirrorOf(double value) {
/openjdk7/jdk/src/macosx/classes/apple/laf/
H A DJRSUIControl.java92 private final HashMap<Key, DoubleValue> nativeMap;
93 private final HashMap<Key, DoubleValue> changes;
104 nativeMap = new HashMap<Key, DoubleValue>();
105 changes = new HashMap<Key, DoubleValue>();
112 nativeMap = new HashMap<Key, DoubleValue>();
113 changes = new HashMap<Key, DoubleValue>(other.nativeMap);
137 final JRSUIConstants.DoubleValue value = changes.get(key);
172 private synchronized void set(final JRSUIConstants.Key key, final JRSUIConstants.DoubleValue value) {
173 final JRSUIConstants.DoubleValue existingValue = nativeMap.get(key);
192 set(key, new JRSUIConstants.DoubleValue(valu
[all...]
H A DJRSUIConstants.java69 static class DoubleValue { class in class:JRSUIConstants
74 DoubleValue(final double doubleValue) { method in class:JRSUIConstants.DoubleValue
87 return (obj instanceof DoubleValue) && (((DoubleValue)obj).doubleValue == doubleValue);
/openjdk7/jdk/test/com/sun/jdi/
H A DGetSetLocalTest.java264 DoubleValue incrValue(DoubleValue val) {
429 DoubleValue get = (DoubleValue) frame.getValue(lv);
430 DoubleValue set = incrValue(get);
434 get = (DoubleValue) frame.getValue(lv);
525 DoubleValue get = (DoubleValue) frame.getValue(lv);
531 DoubleValue set = vm().mirrorOf(1.2345E02);
H A DFetchLocals.java223 protected void test(String name, DoubleValue testV, double expectV)
340 DoubleValue doubleV = (DoubleValue) sf.getValue(lv);
346 doubleV = (DoubleValue) sf.getValue(lv);
H A DMethodExitReturnValuesTest.java271 DoubleValue theValue = (DoubleValue)targetClass.getValue(theValueField);
274 double rv = ((DoubleValue)retValue).value();
475 double rv = ((DoubleValue)retValue).value();
H A DEarlyReturnNegativeTest.java171 DoubleValue doubleVV;
331 doubleVV = (DoubleValue)targetClass.getValue(theValueField);
H A DEarlyReturnTest.java345 DoubleValue theValue = (DoubleValue)targetClass.getValue(theValueField);
348 double rv = ((DoubleValue)retValue).value();
593 DoubleValue theValue = (DoubleValue)targetClass.getValue(theValueField);
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DLValue.java994 if ((primRight instanceof DoubleValue) ||
995 (primLeft instanceof DoubleValue)) {

Completed in 116 milliseconds