Searched refs:amt (Results 1 - 9 of 9) sorted by relevance

/dalvik/dx/src/com/android/dx/util/
H A DAnnotatedOutput.java58 * @param amt {@code >= 0;} the amount of output for this annotation to
62 public void annotate(int amt, String msg); argument
H A DFileUtils.java78 int amt = in.read(result, at, length);
79 if (amt == -1) {
82 at += amt;
83 length -= amt;
H A DTwoColumnOutput.java246 * @param amt {@code >= 0;} the number of spaces to write
248 private static void writeSpaces(Writer out, int amt) throws IOException { argument
249 while (amt > 0) {
251 amt--;
H A DByteArrayAnnotatedOutput.java377 public void annotate(int amt, String msg) { argument
394 annotations.add(new Annotation(startAt, startAt + amt, msg));
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/util/
H A DAbstractMapTest.java409 AbstractMap amt = new AMT();
411 amt.putAll(ht);
412 assertEquals("Should be equal", amt, ht);
422 AMT amt = new AMT();
423 assertNotNull(amt);
471 AMT amt = new AMT();
472 assertTrue(amt.isEmpty());
473 amt.put("1", "one");
474 assertFalse(amt.isEmpty());
484 AMT amt
[all...]
/dalvik/dx/src/com/android/dx/cf/direct/
H A DClassPathOpener.java233 int amt = in.read(buf);
234 if (amt < 0) {
238 baos.write(buf, 0, amt);
/dalvik/dx/src/com/android/dx/dex/file/
H A DDexFile.java619 int amt = md.digest(bytes, 12, 20);
620 if (amt != 20) {
621 throw new RuntimeException("unexpected digest write: " + amt +
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
H A DAbstractMapTest.java299 AMT amt = new AMT();
301 amt.putAll(ht);
303 assertEquals("Should be equal", amt, ht);
/dalvik/libcore/luni/src/test/java/tests/api/java/io/
H A DInputStreamReaderTest.java730 int amt = isr.read(chars);
731 if (amt <= 0) {
735 for (int i = 0; i < amt; i++) {

Completed in 176 milliseconds