Searched refs:amt (Results 1 – 10 of 10) sorted by relevance
/dalvik/dexgen/src/com/android/dexgen/util/ |
D | FileUtils.java | 78 int amt = in.read(result, at, length); in readFile() local 79 if (amt == -1) { in readFile() 82 at += amt; in readFile() 83 length -= amt; in readFile()
|
D | AnnotatedOutput.java | 62 public void annotate(int amt, String msg); in annotate() argument
|
D | TwoColumnOutput.java | 248 private static void writeSpaces(Writer out, int amt) throws IOException { in writeSpaces() argument 249 while (amt > 0) { in writeSpaces() 251 amt--; in writeSpaces()
|
D | ByteArrayAnnotatedOutput.java | 377 public void annotate(int amt, String msg) { in annotate() argument 394 annotations.add(new Annotation(startAt, startAt + amt, msg)); in annotate()
|
/dalvik/dx/src/com/android/multidex/ |
D | Path.java | 69 int amt = in.read(readBuffer); in readStream() local 70 if (amt < 0) { in readStream() 74 baos.write(readBuffer, 0, amt); in readStream()
|
/dalvik/dx/src/com/android/dx/util/ |
D | AnnotatedOutput.java | 62 public void annotate(int amt, String msg); in annotate() argument
|
D | TwoColumnOutput.java | 248 private static void writeSpaces(Writer out, int amt) throws IOException { in writeSpaces() argument 249 while (amt > 0) { in writeSpaces() 251 amt--; in writeSpaces()
|
D | ByteArrayAnnotatedOutput.java | 373 public void annotate(int amt, String msg) { in annotate() argument 390 annotations.add(new Annotation(startAt, startAt + amt, msg)); in annotate()
|
/dalvik/dexgen/src/com/android/dexgen/dex/file/ |
D | DexFile.java | 618 int amt = md.digest(bytes, 12, 20); in calcSignature() local 619 if (amt != 20) { in calcSignature() 620 throw new RuntimeException("unexpected digest write: " + amt + in calcSignature()
|
/dalvik/dx/src/com/android/dx/dex/file/ |
D | DexFile.java | 635 int amt = md.digest(bytes, 12, 20); in calcSignature() local 636 if (amt != 20) { in calcSignature() 637 throw new RuntimeException("unexpected digest write: " + amt + in calcSignature()
|