Searched defs:read (Results 1 - 5 of 5) sorted by relevance

/dalvik/dx/src/com/android/dx/io/instructions/
H A DCodeInput.java26 * Returns whether there are any more code units to read. This
34 public int read() throws EOFException; method in interface:CodeInput
H A DShortArrayCodeInput.java26 /** source array to read from */
46 public int read() throws EOFException { method in class:ShortArrayCodeInput
58 int short0 = read();
59 int short1 = read();
66 long short0 = read();
67 long short1 = read();
68 long short2 = read();
69 long short3 = read();
/dalvik/dexgen/src/com/android/dexgen/util/
H A DByteArray.java24 * Wrapper for a {@code byte[]}, which provides read-only access and
304 public int read() throws IOException { method in class:ByteArray.MyInputStream
314 public int read(byte[] arr, int offset, int length) { method in class:ByteArray.MyInputStream
/dalvik/dx/src/com/android/dx/util/
H A DByteArray.java24 * Wrapper for a {@code byte[]}, which provides read-only access and
304 public int read() throws IOException { method in class:ByteArray.MyInputStream
314 public int read(byte[] arr, int offset, int length) { method in class:ByteArray.MyInputStream
/dalvik/dx/src/com/android/dx/merge/
H A DDexMerger.java252 a = read(inA, aIndexMap, aIndex);
256 b = read(inB, bIndexMap, bIndex);
333 T value = read(in, indexMap, 0);
340 abstract T read(DexBuffer.Section in, IndexMap indexMap, int index); method in class:DexMerger.IdMerger
381 @Override String read(DexBuffer.Section in, IndexMap indexMap, int index) {
403 @Override Integer read(DexBuffer.Section in, IndexMap indexMap, int index) {
424 @Override TypeList read(DexBuffer.Section in, IndexMap indexMap, int index) {
444 @Override ProtoId read(DexBuffer.Section in, IndexMap indexMap, int index) {
464 @Override FieldId read(DexBuffer.Section in, IndexMap indexMap, int index) {
484 @Override MethodId read(DexBuffe
[all...]

Completed in 2322 milliseconds