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.java253 a = read(inA, aIndexMap, aIndex);
257 b = read(inB, bIndexMap, bIndex);
334 T value = read(in, indexMap, 0);
341 abstract T read(Dex.Section in, IndexMap indexMap, int index); method in class:DexMerger.IdMerger
382 @Override String read(Dex.Section in, IndexMap indexMap, int index) {
404 @Override Integer read(Dex.Section in, IndexMap indexMap, int index) {
428 @Override TypeList read(Dex.Section in, IndexMap indexMap, int index) {
448 @Override ProtoId read(Dex.Section in, IndexMap indexMap, int index) {
471 @Override FieldId read(Dex.Section in, IndexMap indexMap, int index) {
494 @Override MethodId read(De
[all...]

Completed in 183 milliseconds