HomeSort by relevance Sort by last modified time
    Searched defs:byteValue (Results 1 - 25 of 47) sorted by null

1 2

  /libcore/luni/src/main/java/java/lang/
Number.java 42 public byte byteValue() {
Byte.java 91 public byte byteValue() {
Short.java 88 public byte byteValue() {
Double.java 164 public byte byteValue() {
Float.java 168 public byte byteValue() {
Integer.java 106 public byte byteValue() {
Long.java 93 public byte byteValue() {
  /external/webkit/Source/JavaScriptCore/runtime/
JSByteArray.h 71 double byteValue = value.toNumber(exec);
75 setIndex(i, byteValue);
  /libcore/luni/src/test/java/libcore/java/text/
NumberFormatTest.java 33 public byte byteValue() { throw new UnsupportedOperationException(); }
  /libcore/support/src/test/java/tests/support/
Support_GetPutFields.java 38 public byte byteValue = 0;
78 byteValue = (byte) 0xbe;
95 byteValue == other.byteValue &&
109 byteValue = getField.get("byteValue", (byte) 0);
123 putField.put("byteValue", byteValue);
Support_GetPutFieldsDefaulted.java 49 public byte byteValue = 0;
89 byteValue = (byte) 0x0b;
106 byteValue == other.byteValue &&
120 byteValue = getField.get("byteValue", (byte) 0x0b);
Support_GetPutFieldsDeprecated.java 40 public byte byteValue = 0;
80 byteValue = (byte) 0xbe;
97 byteValue == other.byteValue &&
110 byteValue = getField.get("byteValue", (byte) 0);
124 putField.put("byteValue", byteValue);
  /external/proguard/src/proguard/evaluation/value/
ParticularIntegerValue.java 59 int byteValue = (byte)value;
61 return byteValue == value ?
63 new ParticularIntegerValue(byteValue);
  /libcore/luni/src/test/java/libcore/java/io/
OldObjectInputStreamGetFieldTest.java 65 public byte byteValue;
183 fields.get("byteValue", false);
  /external/apache-harmony/luni/src/test/api/common/org/apache/harmony/luni/tests/java/lang/
ByteTest.java 86 assertEquals(1, new Byte((byte) 1).byteValue());
87 assertEquals(2, new Byte((byte) 2).byteValue());
88 assertEquals(0, new Byte((byte) 0).byteValue());
89 assertEquals(-1, new Byte((byte) -1).byteValue());
93 * @tests java.lang.Byte#byteValue()
96 assertEquals(1, new Byte((byte) 1).byteValue());
97 assertEquals(2, new Byte((byte) 2).byteValue());
98 assertEquals(0, new Byte((byte) 0).byteValue());
99 assertEquals(-1, new Byte((byte) -1).byteValue());
178 assertEquals(Character.digit('1', 2), Byte.valueOf("1", 2).byteValue());
    [all...]
ShortTest.java 26 * @tests java.lang.Short#byteValue()
29 // Test for method byte java.lang.Short.byteValue()
31 .byteValue());
33 .byteValue());
409 * @tests java.lang.Short#byteValue()
412 assertEquals(1, new Short((short)1).byteValue());
413 assertEquals(2, new Short((short)2).byteValue());
414 assertEquals(0, new Short((short)0).byteValue());
415 assertEquals(-1, new Short((short)-1).byteValue());
490 assertEquals(Character.digit('1', 2), Short.valueOf("1", 2).byteValue());
    [all...]
IntegerTest.java 37 * @tests java.lang.Integer#byteValue()
40 // Test for method byte java.lang.Integer.byteValue()
42 .byteValue());
44 .byteValue());
740 * @tests java.lang.Integer#byteValue()
743 assertEquals(1, new Integer(1).byteValue());
744 assertEquals(2, new Integer(2).byteValue());
745 assertEquals(0, new Integer(0).byteValue());
746 assertEquals(-1, new Integer(-1).byteValue());
821 assertEquals(Character.digit('1', 2), Integer.valueOf("1", 2).byteValue());
    [all...]
LongTest.java 37 * @tests java.lang.Long#byteValue()
40 // Test for method byte java.lang.Long.byteValue()
42 assertEquals("Returned incorrect byte value", 127, l.byteValue());
44 .byteValue());
574 * @tests java.lang.Long#byteValue()
577 assertEquals(1, new Long(1).byteValue());
578 assertEquals(2, new Long(2).byteValue());
579 assertEquals(0, new Long(0).byteValue());
580 assertEquals(-1, new Long(-1).byteValue());
655 assertEquals(Character.digit('1', 2), Long.valueOf("1", 2).byteValue());
    [all...]
  /frameworks/base/obex/javax/obex/
ObexHelper.java 626 out.write(byteHeader.byteValue());
    [all...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
crypto.js     [all...]
  /external/dexmaker/src/test/java/com/google/dexmaker/
DexMakerTest.java     [all...]
  /external/v8/benchmarks/
crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v4/
v8-crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v5/
v8-crypto.js     [all...]
  /external/webkit/PerformanceTests/SunSpider/tests/v8-v6/
v8-crypto.js     [all...]

Completed in 328 milliseconds

1 2