Searched defs:Byte (Results 1 - 7 of 7) sorted by relevance

/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/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/src/share/native/sun/font/
H A Dfontscalerdefs.h53 typedef UInt8 Byte; typedef
/openjdk7/jdk/src/share/classes/java/awt/
H A DTexturePaintContext.java96 return new Byte(bir, cm, xform, maxw);
509 static class Byte extends TexturePaintContext { class in class:TexturePaintContext
518 public Byte(ByteInterleavedRaster srcRas, ColorModel cm, method in class:TexturePaintContext.Byte
655 // is a Byte Raster and this colorModel needs an Int Raster
/openjdk7/jdk/src/share/native/java/util/zip/zlib-1.2.3/
H A Dzconf.h77 # define Byte z_Byte macro
288 typedef unsigned char Byte; /* 8 bits */ typedef
299 # define Bytef Byte FAR
301 typedef Byte FAR Bytef;
313 typedef Byte const *voidpc;
314 typedef Byte FAR *voidpf;
315 typedef Byte *voidp;
/openjdk7/jdk/src/windows/native/java/net/
H A Dnet_util_md.h68 u_char Byte[16]; member in union:in6_addr::__anon1072
77 #define _S6_u8 Byte
83 #define s6_bytes u.Byte
/openjdk7/hotspot/src/share/vm/classfile/
H A DverificationType.hpp100 Byte = (ITEM_Byte << 2 * BitsPerByte) | Category1, enumerator in enum:VALUE_OBJ_CLASS_SPEC::__anon180
139 static VerificationType byte_type() { return VerificationType(Byte); }
177 bool is_byte() const { return (_u._data == Byte); }
282 case Byte:

Completed in 65 milliseconds