Searched defs:getByte (Results 51 - 67 of 67) sorted by relevance

123

/openjdk7/jdk/src/share/classes/sun/security/util/
H A DDerInputStream.java514 int getByte() throws IOException { method in class:DerInputStream
/openjdk7/jdk/src/solaris/classes/sun/awt/X11/
H A DNative.java83 static byte getByte(long ptr) { return unsafe.getByte(ptr); } method in class:Native
85 static byte getByte(long ptr, int index) { method in class:Native
86 return getByte(ptr+index);
108 res[i] = getByte(data);
131 static short getUByte(long ptr) { return (short)(0xFF & unsafe.getByte(ptr)); }
/openjdk7/jdk/src/share/classes/java/lang/reflect/
H A DField.java439 public byte getByte(Object obj) method in class:Field
447 return getFieldAccessor(obj).getByte(obj);
/openjdk7/jdk/src/share/classes/java/sql/
H A DCallableStatement.java204 byte getByte(int parameterIndex) throws SQLException; method in interface:CallableStatement
825 * @see #getByte
1386 byte getByte(String parameterName) throws SQLException; method in interface:CallableStatement
H A DResultSet.java273 byte getByte(int columnIndex) throws SQLException; method in interface:ResultSet
558 byte getByte(String columnLabel) throws SQLException; method in interface:ResultSet
/openjdk7/jdk/src/share/classes/com/sun/java/util/jar/pack/
H A DCode.java351 public int getByte(int pc) { return Instruction.getByte(bytes, pc); } method in class:Code
H A DInstruction.java105 int bc = getByte(bytes, pc);
113 bc = getByte(bytes, pc+1);
152 return getByte(bytes, pc+indexLoc); // _ldc opcode only
177 return getByte(bytes, pc+slotLoc);
214 case 1: return (byte) getByte(bytes, pc+conLoc);
393 return getByte(bytes, pc+off);
401 return (getByte(bytes, pc+0) << 8) + (getByte(bytes, pc+1) << 0);
403 public static int getByte(byte[] bytes, int pc) { method in class:Instruction
H A DBandStructure.java914 public int getByte() throws IOException { method in class:BandStructure.ByteBand
/openjdk7/langtools/src/share/classes/com/sun/tools/classfile/
H A DInstruction.java165 public int getByte(int offset) { method in class:Instruction
171 return getByte(offset) & 0xff;
176 return (getByte(offset) << 8) | getUnsignedByte(offset + 1);
261 return visitor.visitValue(this, getByte(1), p);
310 this, getUnsignedByte(1), getByte(2), p);
/openjdk7/jdk/src/share/native/com/sun/java/util/jar/pack/
H A Dcoding.h171 int getByte() { function in struct:value_stream
H A Dbands.h102 int getByte() { assert(ix == null); return vs[0].getByte(); } function in struct:band
/openjdk7/jdk/src/share/classes/sun/awt/image/
H A DPNGImageDecoder.java151 bitDepth = getByte(st+8);
152 colorType = getByte(st+9);
153 compressionMethod = getByte(st+10);
154 filterMethod = getByte(st+11);
155 interlaceMethod = getByte(st+12);
186 getByte(st+2)-1,
187 getByte(st+3),
188 getByte(st+4),
189 getByte(st+5),
190 getByte(s
704 private final int getByte(int pos) { method in class:PNGImageDecoder
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/
H A DJoinRowSetImpl.java1045 public byte getByte(int columnIndex) throws SQLException { method in class:JoinRowSetImpl
1046 return crsInternal.getByte(columnIndex);
1339 public byte getByte(String columnName) throws SQLException { method in class:JoinRowSetImpl
1340 return crsInternal.getByte(columnName);
H A DJdbcRowSetImpl.java925 public byte getByte(int columnIndex) throws SQLException { method in class:JdbcRowSetImpl
928 return rs.getByte(columnIndex);
1257 public byte getByte(String columnName) throws SQLException { method in class:JdbcRowSetImpl
1258 return getByte(findColumn(columnName));
6921 * @see #getByte
H A DCachedRowSetImpl.java1781 * @see #getByte(String)
1783 public byte getByte(int columnIndex) throws SQLException { method in class:CachedRowSetImpl
2519 public byte getByte(String columnName) throws SQLException { method in class:CachedRowSetImpl
2520 return getByte(getColIdxByName(columnName));
10003 * @see #getByte
/openjdk7/jdk/src/share/classes/sun/misc/
H A DUnsafe.java75 * public int getCount() { return unsafe.getByte(myCountAddress); }
201 public native byte getByte(Object o, long offset); method in class:Unsafe
288 public byte getByte(Object o, int offset) { method in class:Unsafe
289 return getByte(o, (long)offset);
400 public native byte getByte(long address); method in class:Unsafe
407 * @see #getByte(long)
411 /** @see #getByte(long) */
415 /** @see #getByte(long) */
419 /** @see #getByte(long) */
423 /** @see #getByte(lon
[all...]
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DSyncResolverImpl.java1145 * @see #getByte(String)
1147 public byte getByte(int columnIndex) throws SQLException { method in class:SyncResolverImpl
1522 public byte getByte(String columnName) throws SQLException { method in class:SyncResolverImpl

Completed in 166 milliseconds

123