Searched refs:ByteValue (Results 1 - 13 of 13) sorted by relevance

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DByteValue.java36 public interface ByteValue extends PrimitiveValue, Comparable<ByteValue> interface in inherits:PrimitiveValue,Comparable
39 * Returns this ByteValue as a <code>byte</code>.
46 * Compares the specified Object with this ByteValue for equality.
48 * @return true if the Object is a ByteValue and if applying "=="
H A DVirtualMachine.java312 * Creates a {@link ByteValue} for the given value. This value
317 * @return the {@link ByteValue} for the given byte.
319 ByteValue mirrorOf(byte value);
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DByteValueImpl.java30 implements ByteValue {
40 if ((obj != null) && (obj instanceof ByteValue)) {
41 return (value == ((ByteValue)obj).value())
55 public int compareTo(ByteValue byteVal) {
H A DVirtualMachineImpl.java532 public ByteValue mirrorOf(byte value) {
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DByteValueImpl.java31 implements ByteValue {
41 if ((obj != null) && (obj instanceof ByteValue)) {
42 return (value == ((ByteValue)obj).value())
56 public int compareTo(ByteValue obj) {
H A DPacketStream.java233 if(!(val instanceof ByteValue))
H A DVirtualMachineImpl.java477 public ByteValue mirrorOf(byte value) {
/openjdk7/jdk/test/com/sun/jdi/
H A DGetSetLocalTest.java234 ByteValue incrValue(ByteValue val) {
297 ByteValue get = (ByteValue) frame.getValue(lv);
298 ByteValue set = incrValue(get);
302 get = (ByteValue) frame.getValue(lv);
H A DFetchLocals.java129 protected void test(String name, ByteValue testV, byte expectV)
260 ByteValue byteV = (ByteValue) sf.getValue(lv);
266 byteV = (ByteValue) sf.getValue(lv);
H A DEarlyReturnNegativeTest.java169 ByteValue byteVV;
325 byteVV = (ByteValue)targetClass.getValue(theValueField);
H A DEarlyReturnTest.java317 ByteValue theValue = (ByteValue)targetClass.getValue(theValueField);
320 byte rv = ((ByteValue)retValue).value();
573 ByteValue theValue = (ByteValue)targetClass.getValue(theValueField);
H A DMethodExitReturnValuesTest.java243 ByteValue theValue = (ByteValue)targetClass.getValue(theValueField);
246 byte rv = ((ByteValue)retValue).value();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/expr/
H A DLValue.java159 (indexValue instanceof ByteValue) ||

Completed in 1059 milliseconds