Searched refs:IntegerValue (Results 1 - 17 of 17) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DIntegerValue.java37 public interface IntegerValue extends PrimitiveValue, Comparable<IntegerValue> interface in inherits:PrimitiveValue,Comparable
40 * Returns this IntegerValue as an int.
47 * Compares the specified Object with this IntegerValue for equality.
49 * @return true if the Object is an IntegerValue and if applying "=="
56 * Returns the hash code value for this IntegerValue.
H A DVirtualMachine.java342 * Creates an {@link IntegerValue} for the given value. This value
347 * @return the {@link IntegerValue} for the given int.
349 IntegerValue mirrorOf(int value);
/openjdk7/langtools/test/tools/javac/boxing/
H A DT6369051.java37 class IntegerValue extends Value<Integer> { class in inherits:Value
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DIntegerValueImpl.java30 implements IntegerValue {
40 if ((obj != null) && (obj instanceof IntegerValue)) {
41 return (value == ((IntegerValue)obj).value()) &&
55 public int compareTo(IntegerValue integerVal) {
H A DVirtualMachineImpl.java544 public IntegerValue mirrorOf(int value) {
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DIntegerValueImpl.java31 implements IntegerValue {
41 if ((obj != null) && (obj instanceof IntegerValue)) {
42 return (value == ((IntegerValue)obj).value()) &&
56 public int compareTo(IntegerValue obj) {
H A DPacketStream.java261 if(!(val instanceof IntegerValue))
H A DVirtualMachineImpl.java492 public IntegerValue mirrorOf(int value) {
/openjdk7/jdk/test/com/sun/jdi/
H A DPopAsynchronousTest.java93 IntegerValue resultV = (IntegerValue)frame.getValue(lv);
121 IntegerValue nV = (IntegerValue)top.getValue(lv);
H A DGetSetLocalTest.java249 IntegerValue incrValue(IntegerValue val) {
363 IntegerValue get = (IntegerValue) frame.getValue(lv);
364 IntegerValue set = incrValue(get);
368 get = (IntegerValue) frame.getValue(lv);
493 IntegerValue get = (IntegerValue) frame.getValue(lv);
499 IntegerValue set = vm().mirrorOf((int) 0x3F);
H A DMethodExitReturnValuesTest.java299 IntegerValue theValue = (IntegerValue)targetClass.getValue(theValueField);
302 int rv = ((IntegerValue)retValue).value();
426 IntegerValue theElem2 = (IntegerValue)theValue.getValue(2);
429 IntegerValue retElem2 = (IntegerValue)theRetValue.getValue(2);
H A DArrayRangeTest.java97 int ival = ((IntegerValue)val).value();
135 int ival = ((IntegerValue)vals.get(index)).value();
159 int ival = ((IntegerValue)vals.get(i)).value();
278 int ival = ((IntegerValue)vals.get(index)).value();
H A DFetchLocals.java174 protected void test(String name, IntegerValue testV, int expectV)
290 IntegerValue integerV = (IntegerValue) sf.getValue(lv);
296 integerV = (IntegerValue) sf.getValue(lv);
H A DEarlyReturnTest.java373 IntegerValue theValue = (IntegerValue)targetClass.getValue(theValueField);
376 int rv = ((IntegerValue)retValue).value();
500 IntegerValue theElem2 = (IntegerValue)theValue.getValue(2);
503 IntegerValue retElem2 = (IntegerValue)theRetValue.getValue(2);
601 IntegerValue theValue = (IntegerValue)targetClass.getValue(theValueField);
H A DEarlyReturnNegativeTest.java173 IntegerValue integerVV;
337 integerVV = (IntegerValue)targetClass.getValue(theValueField);
/openjdk7/jdk/test/com/sun/jdi/redefineMethod/
H A DRedefineTest.java186 int ival = ((IntegerValue)val).value();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DLValue.java157 if ( (indexValue instanceof IntegerValue) ||

Completed in 85 milliseconds