/external/icu4c/i18n/ |
indiancal.cpp | 136 * Returns the Julian Day corresponding to gregorian date 158 * Returns the Gregorian Date corresponding to a given Julian Day 159 * @param jd The Julian Day 289 * calendar equivalents for the given Julian day. 294 int32_t gregorianYear; // Stores gregorian date corresponding to Julian day; 297 gregorianYear = jdToGregorian(julianDay, gd)[0]; // Gregorian date for Julian day
|
ethpccal.h | 202 * Return the date offset from Julian 285 * Convert an Ethiopic year, month, and day to a Julian day. 290 * @return Julian day
|
gregoimp.cpp | 89 double julian = 365 * y + ClockMath::floorDivide(y, 4) + (JULIAN_1_CE - 3) + // Julian cal local 93 return julian - JULIAN_1970_CE; // JD => epoch day 123 // Common Julian/Gregorian calculation
|
gregocal.cpp | 55 * Note that the Julian date used here is not a true Julian date, since 56 * it is measured from midnight, not noon. This value is the Julian 69 // setTimeInMillis() limits the Julian day range to +/-7F000000. 386 // The Julian epoch day (not the same as Julian Day) 391 // Compute the Julian calendar day number for January 1, eyear 395 // Julian leap years occurred historically every 4 years starting 403 // Common Julian/Gregorian calculation 466 ((year&0x3) == 0)); // Julian [all...] |
buddhcal.h | 159 * Return the Julian day number of day before the first day of the 167 * @param return the Julian day number of the day before the first
|
coptccal.h | 186 * Return the date offset from Julian 256 * Convert an Coptic year, month, and day to a Julian day. 261 * @return Julian day
|
/external/chromium_org/third_party/icu/source/i18n/ |
ethpccal.h | 202 * Return the date offset from Julian 285 * Convert an Ethiopic year, month, and day to a Julian day. 290 * @return Julian day
|
gregoimp.cpp | 89 double julian = 365 * y + ClockMath::floorDivide(y, 4) + (JULIAN_1_CE - 3) + // Julian cal local 93 return julian - JULIAN_1970_CE; // JD => epoch day 123 // Common Julian/Gregorian calculation
|
gregocal.cpp | 55 * Note that the Julian date used here is not a true Julian date, since 56 * it is measured from midnight, not noon. This value is the Julian 69 // setTimeInMillis() limits the Julian day range to +/-7F000000. 386 // The Julian epoch day (not the same as Julian Day) 391 // Compute the Julian calendar day number for January 1, eyear 395 // Julian leap years occurred historically every 4 years starting 403 // Common Julian/Gregorian calculation 466 ((year&0x3) == 0)); // Julian [all...] |
buddhcal.h | 159 * Return the Julian day number of day before the first day of the 167 * @param return the Julian day number of the day before the first
|
coptccal.h | 186 * Return the date offset from Julian 256 * Convert an Coptic year, month, and day to a Julian day. 261 * @return Julian day
|
/libcore/luni/src/main/java/java/util/ |
Grego.java | 95 long julian =
local 96 365 * y + floorDivide(y, 4) + (JULIAN_1_CE - 3) + // Julian cal
99 return julian - JULIAN_1970_CE; // JD => epoch day
|
/external/bzip2/ |
README.XML.STUFF | 6 Copyright (C) 1996-2010 Julian Seward <jseward@bzip.org>
|
format.pl | 8 # Copyright (C) 1996-2010 Julian Seward <jseward@bzip.org>
|
spewG.c | 17 Copyright (C) 1996-2010 Julian Seward <jseward@bzip.org>
|
Makefile-libbz2_so | 14 # Copyright (C) 1996-2010 Julian Seward <jseward@bzip.org>
|
README.COMPILATION.PROBLEMS | 6 Copyright (C) 1996-2010 Julian Seward <jseward@bzip.org>
|
/external/chromium_org/base/third_party/valgrind/ |
LICENSE | 8 Copyright (C) 2000-2008 Julian Seward. All rights reserved.
|
/external/chromium_org/v8/ |
LICENSE.valgrind | 14 Copyright (C) 2000-2007 Julian Seward. All rights reserved.
|
/external/v8/ |
LICENSE.valgrind | 14 Copyright (C) 2000-2007 Julian Seward. All rights reserved.
|
/external/chromium_org/third_party/sqlite/src/src/ |
date.c | 19 ** SQLite processes all times and dates as Julian Day numbers. The 29 ** be represented, even though julian day numbers allow a much wider 34 ** use the Julian calendar for dates prior to 1582-10-15 and for some 75 sqlite3_int64 iJD; /* The julian day number times 86400000 */ 224 ** Convert from YYYY-MM-DD HH:MM:SS to julian day. We always assume 317 ** Attempt to parse the given string into a Julian Day Number. Return 354 ** Compute the Year, Month, and Day from the julian day number. 380 ** Compute the Hour, Minute, and Seconds from the julian day number. 538 ** seconds since 1970. Convert to a real julian day number. 750 ** Return the julian day number of the date specified in the argument [all...] |
/external/chromium_org/third_party/icu/source/test/intltest/ |
calcasts.cpp | 8 * conversion between julian-day to fields and vice versa. 52 UDate t = (JULIAN_EPOCH+(ONE_DAY*cases[i].julian)); 54 logln("Test case %d: julianday%f -> date %f\n", i, cases[i].julian, t); 128 // Julian Day Era Year Month Day WkDay Hour Min Sec 218 // Julian Day Era Year Month Day WkDay Hour Min Sec 288 // Julian Day Era Year Month Day WkDay Hour Min Sec 337 // Julian Day Era Year Month Day WkDay Hour Min Sec 465 {2299159.5, 1, 1575, 2, 7, THU, 0, 0, 0}, // Gregorian: 14/10/1582 Julian 04/10/1582
|
/external/icu4c/test/intltest/ |
calcasts.cpp | 8 * conversion between julian-day to fields and vice versa. 52 UDate t = (JULIAN_EPOCH+(ONE_DAY*cases[i].julian)); 54 logln("Test case %d: julianday%f -> date %f\n", i, cases[i].julian, t); 128 // Julian Day Era Year Month Day WkDay Hour Min Sec 217 // Julian Day Era Year Month Day WkDay Hour Min Sec 287 // Julian Day Era Year Month Day WkDay Hour Min Sec 336 // Julian Day Era Year Month Day WkDay Hour Min Sec 464 {2299159.5, 1, 1575, 2, 7, THU, 0, 0, 0}, // Gregorian: 14/10/1582 Julian 04/10/1582
|
/frameworks/base/core/tests/coretests/src/android/text/format/ |
TimeTest.java | 527 // For each day of the year, and for each timezone, get the Julian 529 // same Julian day. 542 // This is the Julian day for 12am for this day of the year 546 // Julian day. 553 Log.e("TimeTest", "Julian day: " + day + " at time " 555 + " != today's Julian day: " + julianDay 570 // test that we can set the Julian day correctly.
|
/external/chromium_org/third_party/openssl/openssl/crypto/ |
o_time.c | 262 /* Convert date of time structure into a Julian day number. 271 /* Work out Julian day of new date */ 277 /* Convert Julian day back to date */ 298 /* Convert date to and from julian day
|