Searched refs:daysInMonth (Results 1 – 10 of 10) sorted by relevance
/external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/ |
D | 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/ |
D | 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/ |
D | 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/base/third_party/nspr/ |
D | prtime.cc | 333 int daysInMonth; in PR_NormalizeTime() local 405 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month]; in PR_NormalizeTime() 406 while (time->tm_mday > daysInMonth) { in PR_NormalizeTime() 408 time->tm_mday -= daysInMonth; in PR_NormalizeTime() 414 daysInMonth = nDays[IsLeapYear(time->tm_year)][time->tm_month]; in PR_NormalizeTime()
|
/external/chromium_org/third_party/WebKit/Source/platform/ |
D | DateComponents.cpp | 54 static const int daysInMonth[12] = {31, 28, 31, 30, 31, 30, 31, 31, 30, 31, 30, 31}; variable 60 return daysInMonth[month]; in maxDayOfMonth()
|
/external/chromium_org/third_party/libxslt/libexslt/ |
D | date.c | 150 static const unsigned long daysInMonth[12] = variable 156 (IS_LEAP(yr) ? daysInMonthLeap[mon - 1] : daysInMonth[mon - 1]) 161 (dt->day <= daysInMonth[dt->mon - 1]))
|
/external/chromium_org/third_party/icu/source/i18n/ |
D | calendar.cpp | 2299 int32_t daysInMonth = handleGetLimit(UCAL_DAY_OF_MONTH, limitType); in getLimit() local 2301 limit = (daysInMonth + (7 - minDaysInFirst)) / 7; in getLimit() 2303 limit = (daysInMonth + 6 + (7 - minDaysInFirst)) / 7; in getLimit()
|
/external/icu/icu4c/source/i18n/ |
D | calendar.cpp | 2634 int32_t daysInMonth = handleGetLimit(UCAL_DAY_OF_MONTH, limitType); in getLimit() local 2636 limit = (daysInMonth + (7 - minDaysInFirst)) / 7; in getLimit() 2638 limit = (daysInMonth + 6 + (7 - minDaysInFirst)) / 7; in getLimit()
|
/external/chromium_org/third_party/libxml/src/ |
D | xmlschemastypes.c | 1122 static const unsigned int daysInMonth[12] = variable 1128 (IS_LEAP(yr) ? daysInMonthLeap[mon - 1] : daysInMonth[mon - 1]) 1133 (dt->day <= daysInMonth[dt->mon - 1]))
|
/external/libxml2/ |
D | xmlschemastypes.c | 1122 static const unsigned int daysInMonth[12] = variable 1128 (IS_LEAP(yr) ? daysInMonthLeap[mon - 1] : daysInMonth[mon - 1]) 1133 (dt->day <= daysInMonth[dt->mon - 1]))
|