HomeSort by relevance Sort by last modified time
    Searched refs:daysInMonth (Results 1 - 9 of 9) 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/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/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/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/webkit/Source/WebCore/html/
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/icu4c/i18n/
calendar.cpp     [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 

Completed in 444 milliseconds