/external/dexmaker/src/dx/java/com/android/dx/util/ |
ByteInput.java | 29 byte readByte();
|
ByteArrayByteInput.java | 28 @Override public byte readByte() {
|
Mutf8.java | 36 char a = (char) (in.readByte() & 0xff); 44 int b = in.readByte() & 0xff; 50 int b = in.readByte() & 0xff; 51 int c = in.readByte() & 0xff;
|
/libcore/dex/src/main/java/com/android/dex/util/ |
ByteInput.java | 29 byte readByte();
|
ByteArrayByteInput.java | 28 @Override public byte readByte() {
|
/external/jmonkeyengine/engine/src/blender/com/jme3/scene/plugins/blender/file/ |
DnaBlockData.java | 68 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16
69 | inputStream.readByte() << 8 | inputStream.readByte();
76 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16
77 | inputStream.readByte() << 8 | inputStream.readByte();
92 identifier = inputStream.readByte() << 24 | inputStream.readByte() << 16 [all...] |
BlenderInputStream.java | 181 char pointerSizeSign = (char) this.readByte();
189 endianess = (char) this.readByte();
203 return this.readByte();
213 public int readByte() {
226 bytes[i] = (byte) this.readByte();
236 int part1 = this.readByte();
237 int part2 = this.readByte();
250 int part1 = this.readByte();
251 int part2 = this.readByte();
252 int part3 = this.readByte();
[all...] |
FileBlockHeader.java | 88 code = inputStream.readByte() << 24 | inputStream.readByte() << 16
89 | inputStream.readByte() << 8 | inputStream.readByte();
|
/libcore/luni/src/main/java/libcore/io/ |
BufferIterator.java | 45 public abstract byte readByte();
|
/cts/tests/tests/media/src/android/media/cts/ |
IvfReader.java | 132 boolean signatureMatch = ((mIvfFile.readByte() == (byte)'D') && 133 (mIvfFile.readByte() == (byte)'K') && 134 (mIvfFile.readByte() == (byte)'I') && 135 (mIvfFile.readByte() == (byte)'F')); 139 boolean fourccMatch = ((mIvfFile.readByte() == (byte)'V') && 140 (mIvfFile.readByte() == (byte)'P') && 141 (mIvfFile.readByte() == (byte)'8') && 142 (mIvfFile.readByte() == (byte)'0'));
|
/external/ganymed-ssh2/src/main/java/ch/ethz/ssh2/crypto/ |
SimpleDERReader.java | 45 private byte readByte() throws IOException 75 int len = readByte() & 0xff; 90 len = len | (readByte() & 0xff); 99 int type = readByte() & 0xff; 113 int type = readByte() & 0xff; 130 int type = readByte() & 0xff; 145 int type = readByte() & 0xff;
|
/external/llvm/include/llvm/Support/ |
MemoryObject.h | 39 /// readByte - Tries to read a single byte from the region. 45 virtual int readByte(uint64_t address, uint8_t *ptr) const = 0;
|
StringRefMemoryObject.h | 35 int readByte(uint64_t Addr, uint8_t *Byte) const LLVM_OVERRIDE;
|
/external/llvm/lib/Support/ |
MemoryObject.cpp | 26 if (readByte(current, &buf[(current - address)]))
|
/external/smali/dexlib/src/main/java/org/jf/dexlib/Util/ |
Input.java | 62 public byte readByte();
|
/external/jmonkeyengine/engine/src/core-plugins/com/jme3/texture/plugins/ |
TGALoader.java | 225 data[1] = dis.readByte(); 226 data[0] = dis.readByte(); 250 // blue = dis.readByte(); 251 // green = dis.readByte(); 252 // red = dis.readByte(); 265 blue = dis.readByte(); 266 green = dis.readByte(); 267 red = dis.readByte(); 268 alpha = dis.readByte(); 294 int count = dis.readByte(); [all...] |
/packages/apps/Email/src/com/android/email/mail/store/imap/ |
ImapResponseParser.java | 128 private int readByte() throws IOException { 197 int b = readByte(); 213 final int next = readByte(); 227 final int ch = readByte(); 261 readByte(); // skip + 276 readByte(); // skip * 290 readByte(); // skip ' ' 299 readByte(); 338 readByte(); // Skip " 343 readByte(); // Consume \ [all...] |
/libcore/dex/src/main/java/com/android/dex/ |
EncodedValueCodec.java | 126 result = (result >>> 8) | ((in.readByte() & 0xff) << 24); 142 result = (result >>> 8) | ((in.readByte() & 0xff) << 24); 147 result = (result >>> 8) | ((in.readByte() & 0xff) << 24); 161 result = (result >>> 8) | ((in.readByte() & 0xffL) << 56); 177 result = (result >>> 8) | ((in.readByte() & 0xffL) << 56); 182 result = (result >>> 8) | ((in.readByte() & 0xffL) << 56);
|
Mutf8.java | 37 char a = (char) (in.readByte() & 0xff); 45 int b = in.readByte() & 0xff; 51 int b = in.readByte() & 0xff; 52 int c = in.readByte() & 0xff;
|
/dalvik/dx/tests/117-modified-utf8/com/android/dx/util/ |
Mutf8Test.java | 31 assertEquals('A', in.readByte()); 33 assertEquals('E', in.readByte());
|
/libcore/luni/src/main/java/java/io/ |
DataInput.java | 71 public abstract byte readByte() throws IOException;
|
/frameworks/base/wifi/java/android/net/wifi/p2p/ |
WifiP2pInfo.java | 84 info.groupFormed = (in.readByte() == 1); 85 info.isGroupOwner = (in.readByte() == 1); 86 if (in.readByte() == 1) {
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
EOLConvertingInputStream.java | 92 private int readByte() throws IOException {
114 int b = readByte();
122 int c = readByte();
|
/external/chromium_org/third_party/skia/src/images/ |
SkImageDecoder_libico.cpp | 34 #define readByte(buffer,begin) buffer[begin] 108 int width = readByte(buf, 6 + i*16); 109 int height = readByte(buf, 7 + i*16); 145 int w = readByte(buf, 6 + choice*16); 146 int h = readByte(buf, 7 + choice*16); 147 int colorCount = readByte(buf, 8 + choice*16); 148 //int reservedToo = readByte(buf, 9 + choice*16); //0 224 blue = readByte(buf, begin + 4*j); 225 green = readByte(buf, begin + 4*j + 1); 226 red = readByte(buf, begin + 4*j + 2) [all...] |
/external/skia/src/images/ |
SkImageDecoder_libico.cpp | 34 #define readByte(buffer,begin) buffer[begin] 108 int width = readByte(buf, 6 + i*16); 109 int height = readByte(buf, 7 + i*16); 145 int w = readByte(buf, 6 + choice*16); 146 int h = readByte(buf, 7 + choice*16); 147 int colorCount = readByte(buf, 8 + choice*16); 148 //int reservedToo = readByte(buf, 9 + choice*16); //0 224 blue = readByte(buf, begin + 4*j); 225 green = readByte(buf, begin + 4*j + 1); 226 red = readByte(buf, begin + 4*j + 2) [all...] |