HomeSort by relevance Sort by last modified time
    Searched refs:days (Results 51 - 75 of 83) sorted by null

1 23 4

  /external/v8/test/mjsunit/
date.js 45 // Test limits (+/-1e8 days from epoch)
  /external/webkit/JavaScriptCore/wtf/
DateMath.cpp 484 double days = (day - 32075) local
489 return ((days * hoursPerDay + hour) * minutesPerHour + minute) * secondsPerMinute + second;
  /external/chromium/third_party/icu/source/i18n/
gregocal.cpp 555 // Add 2 because Gregorian calendar starts 2 days after
666 int32_t days = internalGet(UCAL_DAY_OF_YEAR); local
667 if (days < 1 || days > yearLength()) {
723 // Add 2 because Gregorian calendar starts 2 days after Julian calendar
830 int32_t cMonthLen=0; // 'c' for cutover; in days
847 // A month containing the cutover is 10 days shorter.
    [all...]
calendar.cpp 1234 int32_t days = (int32_t)ClockMath::floorDivide(localMillis, (double)kOneDay); local
    [all...]
  /external/icu4c/i18n/
gregocal.cpp 555 // Add 2 because Gregorian calendar starts 2 days after
666 int32_t days = internalGet(UCAL_DAY_OF_YEAR); local
667 if (days < 1 || days > yearLength()) {
723 // Add 2 because Gregorian calendar starts 2 days after Julian calendar
830 int32_t cMonthLen=0; // 'c' for cutover; in days
847 // A month containing the cutover is 10 days shorter.
    [all...]
olsontz.cpp 428 double days = ClockMath::floorDivide(((double)ms), (double)U_MILLIS_PER_DAY, millis); local
430 Grego::dayToFields(days, year, month, dom, dow);
    [all...]
calendar.cpp 1252 int32_t days = (int32_t)ClockMath::floorDivide(localMillis, (double)kOneDay); local
    [all...]
  /frameworks/base/core/java/android/text/format/
DateUtils.java 34 * elapsed time and date ranges, strings for days of the week and months, and AM/PM text etc.
152 * This constant is actually the length of 364 days, not of a year!
549 * For example, will transition from "6 days ago" to "Dec 12"
584 * today this function returns "Today", if the day was a week ago it returns "7 days ago", and
585 * if the day is in 2 weeks it returns "in 14 days".
601 int days = Math.abs(currentDay - startDay); local
604 if (days == 1) {
610 } else if (days == 0) {
621 String format = r.getQuantityString(resId, days);
622 return String.format(format, days);
    [all...]
  /frameworks/base/core/java/android/os/
BatteryStats.java 837 long days = seconds / (60 * 60 * 24); local
838 if (days != 0) {
839 out.append(days);
842 long used = days * 60 * 60 * 24;
    [all...]
  /external/webkit/JavaScriptCore/tests/mozilla/js1_5/Regress/
regress-216320.js 167 days = Math.floor(current /(1000 * 60 * 60 * 24));
168 return(days);
  /external/webkit/SunSpider/tests/sunspider-0.9/
date-format-tofte.js 190 // if the day is three days before newyears eve,
  /external/webkit/SunSpider/tests/sunspider-0.9.1/
date-format-tofte.js 190 // if the day is three days before newyears eve,
  /external/webkit/WebCore/inspector/front-end/
utilities.js 582 var days = hours / 24;
583 return formatterFunction("%.1f days", days);
  /libcore/luni/src/main/java/java/text/
SimpleDateFormat.java 715 String[] days = isLong ? longs : shorts; local
716 buffer.append(days[calendar.get(Calendar.DAY_OF_WEEK)]);
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarDatabaseHelper.java 644 // eventTimezone is set to UTC, tries to make sure duration is in days, and that dtstart2
756 int days = (seconds + DAY_IN_SECONDS - 1) / DAY_IN_SECONDS; local
757 duration = "P" + days + "D";
    [all...]
CalendarProvider2.java 1704 int days = (seconds + DAY_IN_SECONDS - 1) \/ DAY_IN_SECONDS; local
    [all...]
  /external/chromium/third_party/icu/source/test/intltest/
calregts.cpp 928 ", minimum days in first week=" +
1977 UDate days = ONE_DAY; local
    [all...]
  /external/icu4c/test/intltest/
calregts.cpp 957 ", minimum days in first week=" +
2006 UDate days = ONE_DAY; local
    [all...]
  /external/v8/src/
date.js 336 // The missing days in 1582 are ignored for JavaScript compatibility.
376 // Compute number of days given a year, month, date.
397 // Return days relative to Jan 1 1970.
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 487 long days = 1; local
489 days = (mDtend - mDtstart) / DateUtils.DAY_IN_MILLIS;
491 mDuration = "P" + days + "D";
564 new EventInfo("allday weekly1", "all-day for 2 days weekly from 5/1/2008",
    [all...]
  /external/icu4c/test/cintltst/
ccaltst.c 390 /*setting minimal days of the week to other values */
1550 const TestDaysOfWeek * days; member in struct:__anon4149
    [all...]
  /external/webkit/WebKit/mac/History/
WebHistory.mm 181 // Returns whether the day is already in the list of days,
488 return [[NSCalendarDate calendarDate] dateByAddingYears:0 months:0 days:-[self historyAgeInDaysLimit]
  /external/webkit/WebKit/win/
WebHistory.cpp 484 // Use std::greater to sort the days in descending order (i.e., most-recent first).
886 // Returns whether the day is already in the list of days,
982 ageLimit.days = -historyLimitDays;
    [all...]
  /external/openssl/crypto/x509/
x509.h 784 X509 * X509_REQ_to_X509(X509_REQ *r, int days,EVP_PKEY *pkey);
    [all...]
  /external/openssl/include/openssl/
x509.h 784 X509 * X509_REQ_to_X509(X509_REQ *r, int days,EVP_PKEY *pkey);
    [all...]

Completed in 802 milliseconds

1 23 4