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

12345

/openjdk7/jdk/src/share/classes/com/sun/jdi/
H A DPrimitiveValue.java57 byte byteValue(); method in interface:PrimitiveValue
/openjdk7/jdk/src/share/classes/java/lang/
H A DNumber.java94 public byte byteValue() { method in class:Number
H A DByte.java322 public byte byteValue() { method in class:Byte
402 return value == ((Byte)obj).byteValue();
/openjdk7/langtools/test/tools/javac/synthesize/
H A DByte.java36 public byte byteValue() { method in class:Byte
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/jdi/
H A DPrimitiveValueImpl.java37 abstract public byte byteValue(); method in class:PrimitiveValueImpl
55 return byteValue();
H A DBooleanValueImpl.java67 public byte byteValue() { method in class:BooleanValueImpl
H A DByteValueImpl.java71 public byte byteValue() { method in class:ByteValueImpl
H A DCharValueImpl.java71 public byte byteValue() { method in class:CharValueImpl
H A DFloatValueImpl.java78 public byte byteValue() { method in class:FloatValueImpl
H A DIntegerValueImpl.java71 public byte byteValue() { method in class:IntegerValueImpl
H A DLongValueImpl.java78 public byte byteValue() { method in class:LongValueImpl
H A DShortValueImpl.java71 public byte byteValue() { method in class:ShortValueImpl
/openjdk7/jdk/src/solaris/classes/sun/java2d/xr/
H A DXRColor.java104 public static int byteToXRColorValue(int byteValue) { argument
107 if (byteValue != 0) {
108 if (byteValue == 255) {
111 xrValue = ((byteValue << 8) + 255);
/openjdk7/jdk/src/share/classes/com/sun/tools/jdi/
H A DPrimitiveValueImpl.java38 abstract public byte byteValue(); method in class:PrimitiveValueImpl
56 return byteValue();
H A DBooleanValueImpl.java68 public byte byteValue() { method in class:BooleanValueImpl
H A DByteValueImpl.java74 public byte byteValue() { method in class:ByteValueImpl
H A DCharValueImpl.java73 public byte byteValue() { method in class:CharValueImpl
H A DFloatValueImpl.java79 public byte byteValue() { method in class:FloatValueImpl
H A DIntegerValueImpl.java73 public byte byteValue() { method in class:IntegerValueImpl
H A DLongValueImpl.java79 public byte byteValue() { method in class:LongValueImpl
/openjdk7/jdk/test/java/lang/Byte/
H A DDecode.java49 byte n = (Byte.decode(val)).byteValue();
57 byte n = (Byte.decode(val)).byteValue();
/openjdk7/jdk/test/sun/nio/cs/
H A DDecode.java50 arg.matches("0x.*") ? Integer.decode(arg).byteValue() :
51 Integer.decode("0x"+arg).byteValue();
/openjdk7/jdk/src/share/classes/sun/management/counter/perf/
H A DPerfDataType.java64 public byte byteValue() { method in class:PerfDataType
81 if (basicTypes[j].byteValue() == type) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/
H A DTestDebugger.java112 byte byteValue = 0;
125 byteValue = addr.getJByteAt(0);
126 if (byteValue != expectedByteValue) {
128 byteValue + ", expected " + expectedByteValue + ")");
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/utilities/
H A DCStringUtilities.java71 bytes[(int) i] = ((Byte) data.get((int) i)).byteValue();

Completed in 73 milliseconds

12345