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

/libcore/luni/src/main/java/java/lang/
H A DNumber.java42 public byte byteValue() { method in class:Number
H A DByte.java91 public byte byteValue() { method in class:Byte
H A DShort.java88 public byte byteValue() { method in class:Short
H A DDouble.java164 public byte byteValue() { method in class:Double
H A DFloat.java168 public byte byteValue() { method in class:Float
H A DInteger.java106 public byte byteValue() { method in class:Integer
H A DLong.java93 public byte byteValue() { method in class:Long
/libcore/support/src/test/java/tests/support/
H A DSupport_GetPutFields.java38 public byte byteValue = 0; field in class:Support_GetPutFields
78 byteValue = (byte) 0xbe;
95 byteValue == other.byteValue &&
109 byteValue = getField.get("byteValue", (byte) 0);
123 putField.put("byteValue", byteValue);
H A DSupport_GetPutFieldsDeprecated.java40 public byte byteValue = 0; field in class:Support_GetPutFieldsDeprecated
80 byteValue = (byte) 0xbe;
97 byteValue == other.byteValue &&
110 byteValue = getField.get("byteValue", (byte) 0);
124 putField.put("byteValue", byteValue);
H A DSupport_GetPutFieldsDefaulted.java49 public byte byteValue = 0; field in class:Support_GetPutFieldsDefaulted
89 byteValue = (byte) 0x0b;
106 byteValue == other.byteValue &&
120 byteValue = getField.get("byteValue", (byte) 0x0b);
/libcore/luni/src/test/java/libcore/java/lang/
H A DOldDoubleTest.java25 assertEquals("Returned incorrect byte value", Byte.MAX_VALUE, d.byteValue());
27 assertEquals("Returned incorrect byte value", Byte.MIN_VALUE, d.byteValue());
29 assertEquals("Returned incorrect byte value", -1, d.byteValue());
/libcore/luni/src/test/java/libcore/java/math/
H A DOldBigDecimalConvertTest.java250 byte bNumber = bdNumber.byteValue();
251 assertTrue("incorrect byteValue", i == bNumber);
255 * @test java.math.BigDecimal#byteValue() Convert negative BigDesimal to
264 byte bNumber = bdNumber.byteValue();
276 byte bNumber = bdNumber.byteValue();
277 assertTrue("incorrect byteValue", iNumber == bNumber);
286 byte bNumber = bdNumber.byteValue();
287 assertTrue("incorrect byteValue", iNumber == bNumber);
294 byte bNumber = bdNumber.byteValue();
295 assertTrue("incorrect byteValue", bNumbe
[all...]
/libcore/luni/src/test/java/libcore/java/nio/charset/
H A DCharsetDecoderTest.java57 arr = prependByteToByteArray(arr, new Integer(1).byteValue());
73 arr = prependByteToByteArray(arr, new Integer(1).byteValue());
/libcore/luni/src/main/java/java/io/
H A DEmulatedFieldsForDumping.java206 output.writeByte(fieldValue != null ? ((Byte) fieldValue).byteValue() : 0);
H A DEmulatedFields.java210 return slot.defaulted ? defaultValue : ((Byte) slot.fieldValue).byteValue();
H A DObjectOutputStream.java911 output.writeByte(fieldValue != null ? ((Byte) fieldValue).byteValue() : 0);
/libcore/luni/src/test/java/libcore/java/text/
H A DNumberFormatTest.java32 public byte byteValue() { throw new UnsupportedOperationException(); }
/libcore/luni/src/test/java/libcore/java/io/
H A DOldObjectInputStreamGetFieldTest.java65 public byte byteValue; field in class:OldObjectInputStreamGetFieldTest
183 fields.get("byteValue", false);
/libcore/luni/src/main/java/java/lang/reflect/
H A DArray.java411 setByte(array, index, ((Byte) value).byteValue());
/libcore/luni/src/main/java/java/util/
H A DScanner.java1163 byte byteValue = 0;
1165 byteValue = Byte.parseByte(intString, radix);
1171 return byteValue;
/libcore/luni/src/test/java/tests/api/java/lang/reflect/
H A DFieldTest.java320 f.setByte(o, ((Byte) value).byteValue());

Completed in 318 milliseconds