HomeSort by relevance Sort by last modified time
    Searched refs:daysInMonth (Results 1 - 16 of 16) sorted by null

  /libcore/luni/src/main/java/java/util/
GregorianCalendar.java 207 static byte[] DaysInMonth = new byte[] { 31, 28, 31, 30, 31, 30, 31, 31,
390 int days = daysInMonth(isLeapYear(fields[YEAR]), fields[MONTH]);
488 if (date > daysInMonth(leapYear, month)) {
489 date -= daysInMonth(leapYear, month);
519 if (date > daysInMonth(leapYear, month)) {
520 date -= daysInMonth(leapYear, month);
698 && (fields[DATE] < 1 || fields[DATE] > daysInMonth(
720 days += daysInMonth(leapYear, month)
722 - (days + daysInMonth(leapYear, month) - 3))
830 private int daysInMonth() {
    [all...]
SimpleTimeZone.java 364 int ruleDay = 0, daysInMonth, firstDayOfMonth = mod7(dayOfWeek - day);
375 daysInMonth = GregorianCalendar.DaysInMonth[startMonth];
378 daysInMonth += 1;
380 ruleDay = daysInMonth
383 - (firstDayOfMonth + daysInMonth))
418 daysInMonth = GregorianCalendar.DaysInMonth[endMonth];
420 daysInMonth++;
422 ruleDay = daysInMonth
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-xparb.js 293 Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
295 num += Date.daysInMonth[i];
321 var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
326 Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
327 return Date.daysInMonth[this.getMonth()];
362 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
date-format-xparb.js 293 Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
295 num += Date.daysInMonth[i];
321 var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
326 Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
327 return Date.daysInMonth[this.getMonth()];
362 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
date-format-xparb.js 293 Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
295 num += Date.daysInMonth[i];
321 var day = (this.getDay() + (Date.daysInMonth[this.getMonth()] - this.getDate())) % 7;
326 Date.daysInMonth[1] = this.isLeapYear() ? 29 : 28;
327 return Date.daysInMonth[this.getMonth()];
362 Date.daysInMonth = [31,28,31,30,31,30,31,31,30,31,30,31];
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DatePickerDialog.java 389 int daysInMonth = Utils.getDaysInMonth(month, year);
390 if (day > daysInMonth) {
391 mCalendar.set(Calendar.DAY_OF_MONTH, daysInMonth);
  /external/chromium/base/third_party/nspr/
prtime.cc 324 int daysInMonth;
396 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month];
397 while (time->tm_mday > daysInMonth) {
399 time->tm_mday -= daysInMonth;
405 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month];
    [all...]
  /external/chromium_org/base/third_party/nspr/
prtime.cc 329 int daysInMonth;
401 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month];
402 while (time->tm_mday > daysInMonth) {
404 time->tm_mday -= daysInMonth;
410 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month];
    [all...]
  /external/chromium_org/third_party/WebKit/Source/core/platform/
DateComponents.cpp 54 static const int daysInMonth[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31};
71 return daysInMonth[month];
  /external/chromium_org/third_party/icu/source/i18n/
calendar.cpp     [all...]
  /external/chromium_org/third_party/libxslt/libexslt/
date.c 150 static const unsigned long daysInMonth[12] =
156 (IS_LEAP(yr) ? daysInMonthLeap[mon - 1] : daysInMonth[mon - 1])
161 (dt->day <= daysInMonth[dt->mon - 1]))
    [all...]
  /external/icu4c/i18n/
calendar.cpp     [all...]
  /external/chromium_org/third_party/libxml/src/
xmlschemastypes.c     [all...]
  /external/libxml2/
xmlschemastypes.c     [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 925 milliseconds