Home
last modified time | relevance | path

Searched defs:d (Results 1 – 25 of 109) sorted by relevance

12345

/dalvik/libcore/concurrent/src/main/java/java/util/concurrent/
DTimeUnit.java45 public long toNanos(long d) { return d; } in toNanos()
46 public long toMicros(long d) { return d/(C1/C0); } in toMicros()
47 public long toMillis(long d) { return d/(C2/C0); } in toMillis()
48 public long toSeconds(long d) { return d/(C3/C0); } in toSeconds()
49 public long toMinutes(long d) { return d/(C4/C0); } in toMinutes()
50 public long toHours(long d) { return d/(C5/C0); } in toHours()
51 public long toDays(long d) { return d/(C6/C0); } in toDays()
52 public long convert(long d, TimeUnit u) { return u.toNanos(d); } in convert()
53 int excessNanos(long d, long m) { return (int)(d - (m*C2)); } in excessNanos()
57 public long toNanos(long d) { return x(d, C1/C0, MAX/(C1/C0)); } in toNanos()
[all …]
/dalvik/libcore/luni/src/main/java/java/lang/
DStrictMath.java77 public static double abs(double d) { in abs()
150 public static native double acos(double d); in acos()
167 public static native double asin(double d); in asin()
186 public static native double atan(double d); in atan()
244 public static native double cbrt(double d); in cbrt()
264 public static native double ceil(double d); in ceil()
282 public static native double cosh(double d); in cosh()
298 public static native double cos(double d); in cos()
315 public static native double exp(double d); in exp()
338 public static native double expm1(double d); in expm1()
[all …]
DMath.java60 public static double abs(double d) { in abs()
132 public static native double acos(double d); in acos()
150 public static native double asin(double d); in asin()
170 public static native double atan(double d); in atan()
229 public static native double cbrt(double d); in cbrt()
250 public static native double ceil(double d); in ceil()
269 public static native double cos(double d); in cos()
287 public static native double cosh(double d); in cosh()
305 public static native double exp(double d); in exp()
332 public static native double expm1(double d); in expm1()
[all …]
DDouble.java228 public static boolean isInfinite(double d) { in isInfinite()
251 public static boolean isNaN(double d) { in isNaN()
307 public static String toString(double d) { in toString()
381 public static Double valueOf(double d) { in valueOf()
393 public static String toHexString(double d) { in toHexString()
/dalvik/libcore/luni/src/test/java/tests/api/java/util/
DDateTest.java288 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getDate() local
304 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getDay() local
320 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getHours() local
336 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getMinutes() local
352 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getMonth() local
368 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getSeconds() local
417 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_getYear() local
450 Date d = new Date(Date.parse("13 October 1998")); in test_parseLjava_lang_String() local
499 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_setDateI() local
516 Date d = new GregorianCalendar(1998, Calendar.OCTOBER, 13, 19, 9) in test_setHoursI() local
[all …]
DArraysTest.java465 short d[] = new short[1000]; in test_fill$SS() local
484 short d[] = new short[1000]; in test_fill$SIIS() local
525 char d[] = new char[1000]; in test_fill$CC() local
543 char d[] = new char[1000]; in test_fill$CIIC() local
584 int d[] = new int[1000]; in test_fill$II() local
603 int d[] = new int[1000]; in test_fill$IIII() local
644 long d[] = new long[1000]; in test_fill$JJ() local
662 long d[] = new long[1000]; in test_fill$JIIJ() local
703 float d[] = new float[1000]; in test_fill$FF() local
722 float d[] = new float[1000]; in test_fill$FIIF() local
[all …]
/dalvik/libcore/security/src/main/java/org/bouncycastle/jce/provider/
DJDKMessageDigest.java64 SHA1 d = (SHA1)super.clone(); in clone() local
83 SHA224 d = (SHA224)super.clone(); in clone() local
102 SHA256 d = (SHA256)super.clone(); in clone() local
121 SHA384 d = (SHA384)super.clone(); in clone() local
140 SHA512 d = (SHA512)super.clone(); in clone() local
199 MD5 d = (MD5)super.clone(); in clone() local
/dalvik/libcore/xml/src/test/java/tests/api/javax/xml/parsers/
DDocumentBuilderTest.java188 Document d; in testNewDocument() local
209 DOMImplementation d; in testGetImplementation() local
286 Document d = db.parse(f); in test_parseLjava_io_File() local
368 Document d = db.parse(is); in test_parseLjava_io_InputStream() local
436 Document d = db.parse(is); in testParseInputSource() local
503 Document d = db.parse(is, SAXParserTestSupport.XML_SYSTEM_ID); in test_parseLjava_io_InputStreamLjava_lang_String() local
575 Document d = db.parse(f.getAbsolutePath()); in test_parseLjava_lang_String() local
638 Document d; in testReset() local
725 Document d; in testSetEntityResolver() local
/dalvik/libcore/luni/src/main/native/
Djava_lang_Double.c16 double d; member
26 Double d; in doubleToLongBits() local
44 Double d; in doubleToRawLongBits() local
56 Double d; in longBitsToDouble() local
/dalvik/tests/003-omnibus-opcodes/src/
DUnresTest1.java29 double d = stuff.wideInstField; in run() local
55 double d = UnresStuff.wideStaticField; in run() local
DFloatMath.java12 double d; in convTest() local
185 static int[] convI(long l, float f, double d, float zero) { in convI()
205 static long[] convL(int i, float f, double d, double zero) { in convL()
225 static float[] convF(int i, long l, double d) { in convF()
261 double d = 10.0; // const-wide/special in checkConsts() local
/dalvik/libcore/luni/src/test/java/org/apache/harmony/luni/tests/java/lang/
DDoubleTest.java206 Double d = new Double(dd); in test_toString() local
221 Double d = new Double(39089.88888888888888888888888888888888); in test_ConstructorD() local
236 Double d = new Double("39089.88888888888888888888888888888888"); in test_ConstructorLjava_lang_String() local
259 Double d = new Double(1923311.47712); in test_byteValue() local
320 Double d = new Double(Double.MAX_VALUE); in test_doubleToLongBitsD() local
342 double d = Double.longBitsToDouble(l); in test_doubleToRawLongBitsD() local
401 Double d = new Double(i); in test_hashCode() local
424 Double d = new Double(1923311.47712); in test_intValue() local
477 Double d = new Double(0.0 / 0.0); in test_isNaN() local
495 Double d = new Double(0.0 / 0.0); in test_isNaND() local
[all …]
/dalvik/libcore/dalvik/src/main/java/org/apache/harmony/dalvik/
DNativeTestTarget.java43 int d, int e, int f); in emptyJniStaticMethod6()
52 int[][] c, Object d, Object[] e, Object[][][][] f); in emptyJniStaticMethod6L()
/dalvik/tests/017-float/src/
DMain.java23 double d = 3.1415926535; in main() local
/dalvik/dx/tests/056-dex-call-interface/
DBlort.java19 public static int test(Zorch z, double d) { in test()
DZorch.java20 public void zorch2(double d); in zorch2()
/dalvik/libcore/dalvik/src/main/native/
Dorg_apache_harmony_dalvik_NativeTestTarget.c36 int a, int b, int c, int d, int e, int f) in emptyJniStaticMethod6()
48 jobject a, jarray b, jarray c, jobject d, jarray e, jarray f) in emptyJniStaticMethod6L()
/dalvik/libcore/security/src/test/java/tests/security/interfaces/
DRSAPrivateKeyTest.java44 final BigInteger d = BigInteger.valueOf(2753); in test_getPrivateExponent() local
DRSAKeyTest.java48 final BigInteger d = BigInteger.valueOf(2753); in test_getModulus() local
/dalvik/tests/027-arithmetic/src/
DMain.java42 long d = 0x44; in shiftTest2() local
57 double d; in convTest() local
/dalvik/tests/014-math3/src/
DMain.java26 double d = 0.0; in main() local
/dalvik/tests/005-args/src/
DArgsTest.java33 void argTest(int a, char c, double d, long j, float f) { in argTest()
/dalvik/libcore/sql/src/test/java/tests/sql/
DResultSetGetterTests.java546 Date d = res.getDate(15); in testGetDateInt() local
554 Date d = res.getDate(500); in testGetDateInt() local
565 Date d = res.getDate(15); in testGetDateInt() local
586 Date d = res.getDate(15, testCal); in testGetDateIntCalendar() local
595 Date d = res.getDate(500, testCal); in testGetDateIntCalendar() local
607 Date d = res.getDate(15,testCal); in testGetDateIntCalendar() local
627 Date d = res.getDate("dateVal"); in testGetDateString() local
635 Date d = res.getDate("bla"); in testGetDateString() local
644 Date d = res.getDate("dateVal"); in testGetDateString() local
664 Date d = res.getDate("dateVal", testCal); in testGetDateStringCalendar() local
[all …]
/dalvik/dx/tests/093-ssa-invoke-range/
DBlort.java5 (int a, int b, int c, int d, int e, int f) { in methodThatNeedsInvokeRange()
32 void testAllParams(int a, int b, int c, int d, int e, int f) { in testAllParams()
/dalvik/tests/049-show-object/src/
DMain.java10 double d = 3.1415; in Main() local

12345