Searched refs:Byte (Results 1 - 25 of 273) sorted by relevance

1234567891011

/openjdk7/langtools/test/tools/javac/boxing/
H A DNoBoxingByte.java33 Byte b = 0;
H A DT6816548.java41 Byte b = fi;
48 Byte b = fs;
55 Byte b = fb;
62 Byte b = fc;
/openjdk7/langtools/test/tools/javac/synthesize/
H A DByte.java26 public class Byte class
28 public static Byte valueOf(byte v) {
29 return new Byte(v);
32 public Byte(byte v) { method in class:Byte
/openjdk7/jdk/test/java/beans/PropertyEditor/
H A DTestByteClassJava.java27 * @summary Tests PropertyEditor for value of type Byte
33 new TestEditor(Byte.class).testJava(Byte.valueOf((byte) 12));
H A DTestByteTypeJava.java33 new TestEditor(Byte.TYPE).testJava(Byte.valueOf((byte) 12));
H A DTestByteClassNull.java27 * @summary Tests PropertyEditor for null value of type Byte
33 new TestEditor(Byte.class).testJava(null);
H A DTestByteClass.java27 * @summary Tests PropertyEditor for value of type Byte with security manager
34 new TestEditor(Byte.class);
H A DTestByteType.java34 new TestEditor(Byte.TYPE);
H A DTestByteTypeNull.java33 new TestEditor(Byte.TYPE).testJava(null);
H A DTestByteClassValue.java27 * @summary Tests PropertyEditor for value of type Byte
33 TestEditor test = new TestEditor(Byte.class);
H A DTestByteTypeValue.java33 TestEditor test = new TestEditor(Byte.TYPE);
/openjdk7/jdk/src/share/classes/java/lang/
H A DByte.java30 * The {@code Byte} class wraps a value of primitive type {@code byte}
31 * in an object. An object of type {@code Byte} contains a single
44 public final class Byte extends Number implements Comparable<Byte> { class in inherits:Number,Comparable
62 public static final Class<Byte> TYPE = (Class<Byte>) Class.getPrimitiveClass("byte");
79 static final Byte cache[] = new Byte[-(-128) + 127 + 1];
83 cache[i] = new Byte((byte)(i - 128));
88 * Returns a {@code Byte} instanc
297 public Byte(byte value) { method in class:Byte
314 public Byte(String s) throws NumberFormatException { method in class:Byte
[all...]
/openjdk7/jdk/test/java/lang/Byte/
H A DDecode.java27 * @summary Test Byte.decode method
33 * There are six methods in java.lang.Byte which transform strings
34 * into a byte or Byte value:
36 * public Byte(String s)
37 * public static Byte decode(String nm)
40 * public static Byte valueOf(String s, int radix)
41 * public static Byte valueOf(String s)
49 byte n = (Byte.decode(val)).byteValue();
51 throw new RuntimeException("Byte.decode failed. String:" +
57 byte n = (Byte
[all...]
/openjdk7/jdk/test/java/beans/XMLDecoder/spec/
H A DTestByte.java47 validate(Byte.MAX_VALUE, decoder.readObject());
48 validate(Byte.MIN_VALUE, decoder.readObject());
52 if (!object.equals(Byte.valueOf(value))) {
H A DTestShort.java49 validate((short) Byte.MAX_VALUE, decoder.readObject());
50 validate((short) Byte.MIN_VALUE, decoder.readObject());
/openjdk7/jdk/src/share/classes/com/sun/beans/decoder/
H A DByteElementHandler.java30 * The class {@link Byte} is used as wrapper for these values.
36 * &lt;method name="decode" class="java.lang.Byte"&gt;
39 * which is equivalent to {@code Byte.decode("127")} in Java code.
61 return Byte.decode(argument);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/
H A DPrimitiveArrayListerByte.java38 final class PrimitiveArrayListerByte<BeanT> extends Lister<BeanT,byte[],Byte,PrimitiveArrayListerByte.ByteArrayPack> {
44 Lister.primitiveArrayListers.put(Byte.TYPE,new PrimitiveArrayListerByte());
47 public ListIterator<Byte> iterator(final byte[] objects, XMLSerializer context) {
48 return new ListIterator<Byte>() {
54 public Byte next() {
64 public void addToPack(ByteArrayPack objects, Byte o) {
80 void add(Byte b) {
/openjdk7/hotspot/agent/src/share/classes/sun/jvm/hotspot/debugger/
H A DMachineDescriptionTwosComplement.java34 Byte.MIN_VALUE,
42 Byte.MAX_VALUE,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/reflect/opt/
H A DFieldAccessor_Byte.java40 super(Byte.class);
48 ((Bean)bean).f_byte = value==null ? Const.default_value_byte : (Byte)value;
H A DMethodAccessor_Byte.java40 super(Byte.class);
48 ((Bean)bean).set_byte( value==null ? Const.default_value_byte : (Byte)value );
/openjdk7/jdk/test/java/nio/Buffer/
H A DgenBasic.sh32 gen byte Byte Byte
H A DgenCopyDirectMemory.sh32 gen byte Byte Byte
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvmmib/
H A DJvmThreadInstanceEntryMBean.java75 public Byte[] getJvmThreadInstState() throws SnmpStatusException;
95 public Byte[] getJvmThreadInstIndex() throws SnmpStatusException;
/openjdk7/jdk/src/share/classes/com/sun/beans/editors/
H A DByteEditor.java45 setValue((text == null) ? null : Byte.decode(text));
/openjdk7/jdk/test/sun/net/InetAddress/nameservice/chaining/
H A DSimpleNameService.java41 return Byte.toString(addr[0]) + "." +
42 Byte.toString(addr[1]) + "." +
43 Byte.toString(addr[2]) + "." +
44 Byte.toString(addr[3]);

Completed in 73 milliseconds

1234567891011