Searched defs:convert (Results 1 – 5 of 5) sorted by relevance
/libcore/luni/src/main/java/java/util/concurrent/ |
D | TimeUnit.java | 51 public long convert(long d, TimeUnit u) { return u.toNanos(d); } in convert() method 62 public long convert(long d, TimeUnit u) { return u.toMicros(d); } in convert() method 73 public long convert(long d, TimeUnit u) { return u.toMillis(d); } in convert() method 84 public long convert(long d, TimeUnit u) { return u.toSeconds(d); } in convert() method 95 public long convert(long d, TimeUnit u) { return u.toMinutes(d); } in convert() method 106 public long convert(long d, TimeUnit u) { return u.toHours(d); } in convert() method 117 public long convert(long d, TimeUnit u) { return u.toDays(d); } in convert() method 166 public long convert(long sourceDuration, TimeUnit sourceUnit) { in convert() method in TimeUnit
|
/libcore/luni/src/main/java/libcore/icu/ |
D | NativeIDN.java | 35 private static String convert(String s, int flags, boolean toAscii) { in convert() method in NativeIDN
|
/libcore/dalvik/src/main/java/dalvik/system/profiler/ |
D | HprofBinaryToAscii.java | 48 private static boolean convert(String[] args) { in convert() method in HprofBinaryToAscii
|
/libcore/luni/src/main/java/java/io/ |
D | OutputStreamWriter.java | 176 private void convert(CharBuffer chars) throws IOException { in convert() method in OutputStreamWriter
|
/libcore/harmony-tests/src/test/java/org/apache/harmony/tests/java/util/ |
D | ArraysTest.java | 2210 Object convert(int[] a) { in convert() method 2216 Object convert(int[] a) { in convert() method 2227 Object convert(int[] a) { in convert() method 2238 Object convert(int[] a) { in convert() method 2249 Object convert(int[] a) { in convert() method 2260 Object convert(int[] a) { in convert() method 2271 Object convert(int[] a) { in convert() method 2281 abstract Object convert(int[] a); in convert() method in ArraysTest.PrimitiveTypeConverter
|