/external/v8/test/mjsunit/ |
to_number_order.js | 60 var month = { valueOf: function() { x += 2; return 2; } }; 68 new Date(year, month, date, hours, minutes, seconds, ms); 73 Date(year, month, date, hours, minutes, seconds, ms); 77 Date.UTC(year, month, date, hours, minutes, seconds, ms); 118 new Date().setMonth(month, date, hours, minutes, seconds, ms); 122 new Date().setUTCMonth(month, date, hours, minutes, seconds, ms); 126 new Date().setFullYear(year, month, date, hours, minutes, seconds, ms); 130 new Date().setUTCFullYear(year, month, date, hours, minutes, seconds, ms);
|
date-parse.js | 76 // If the three first letters of the month is a 77 // month name we are happy - ignore the rest. 84 // Allow missing space between month and day. 87 // Allow year/month/day format. 89 // Allow month/day/year format. 91 // Allow month/day year format. 93 // Allow comma instead of space after day, month and year.
|
/external/wpa_supplicant/ |
os_internal.c | 50 int os_mktime(int year, int month, int day, int hour, int min, int sec, 55 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 || 62 tm.tm_mon = month - 1;
|
os_unix.c | 45 int os_mktime(int year, int month, int day, int hour, int min, int sec, 52 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 || 59 tm.tm_mon = month - 1;
|
/external/wpa_supplicant_6/wpa_supplicant/src/utils/ |
os_internal.c | 50 int os_mktime(int year, int month, int day, int hour, int min, int sec, 55 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 || 62 tm.tm_mon = month - 1;
|
os_unix.c | 45 int os_mktime(int year, int month, int day, int hour, int min, int sec, 52 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 || 59 tm.tm_mon = month - 1;
|
/external/wpa_supplicant_8/src/utils/ |
os_internal.c | 50 int os_mktime(int year, int month, int day, int hour, int min, int sec, 55 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 || 62 tm.tm_mon = month - 1;
|
/hardware/ti/omap4xxx/camera/inc/ |
NV12_resize.h | 41 mmInt32 month; member in struct:__anon16581
|
/external/stlport/src/c_locale_win32/ |
c_locale_win32.c | 200 char *month[12]; member in struct:_Locale_time 714 int size, month, dayofweek; local 732 for (month = LOCALE_SMONTHNAME1; month <= LOCALE_SMONTHNAME12; ++month) { /* Small hack :-) */ 733 size = GetLocaleInfoA(ltime->lc.id, month, NULL, 0); 734 ltime->month[month - LOCALE_SMONTHNAME1] = (char*)malloc(size); 735 if (!ltime->month[month - LOCALE_SMONTHNAME1] [all...] |
/ndk/sources/cxx-stl/stlport/src/c_locale_win32/ |
c_locale_win32.c | 200 char *month[12]; member in struct:_Locale_time 714 int size, month, dayofweek; local 732 for (month = LOCALE_SMONTHNAME1; month <= LOCALE_SMONTHNAME12; ++month) { /* Small hack :-) */ 733 size = GetLocaleInfoA(ltime->lc.id, month, NULL, 0); 734 ltime->month[month - LOCALE_SMONTHNAME1] = (char*)malloc(size); 735 if (!ltime->month[month - LOCALE_SMONTHNAME1] [all...] |
/packages/apps/Email/emailcommon/src/org/apache/james/mime4j/field/datetime/parser/ |
DateTimeParser.java | 101 private int month; field in class:DateTimeParser.Date 104 public Date(String year, int month, int day) { 106 this.month = month; 111 public int getMonth() { return month; } 205 m = month(); 218 final public int month() throws ParseException { method in class:DateTimeParser
|
/external/icu4c/i18n/ |
olsontz.cpp | 319 int32_t OlsonTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, 322 if (month < UCAL_JANUARY || month > UCAL_DECEMBER) { 328 return getOffset(era, year, month, dom, dow, millis, 329 Grego::monthLength(year, month), 337 int32_t OlsonTimeZone::getOffset(uint8_t era, int32_t year, int32_t month, 346 || month < UCAL_JANUARY 347 || month > UCAL_DECEMBER 365 return finalZone->getOffset(era, year, month, dom, dow, 370 UDate date = (UDate)(Grego::fieldsToDay(year, month, dom) * U_MILLIS_PER_DAY + millis) 428 int32_t year, month, dom, dow; local 555 int32_t year, month, dom, dow, doy, mid; local [all...] |
buddhcal.cpp | 79 int32_t BuddhistCalendar::handleComputeMonthStart(int32_t eyear, int32_t month, 83 return GregorianCalendar::handleComputeMonthStart(eyear, month, useMonth);
|
olsontz.h | 100 * cessation lists consist of the month, dowim, dow, time, and time 163 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, 170 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month,
|
vzone.h | 193 * @param month The reference date's month (0-based; 0 is January) 194 * @param day The reference date's day-in-month (1-based) 202 vzone_getOffset(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day, 216 * @param month The reference date's month (0-based; 0 is January) 217 * @param day The reference date's day-in-month (1-based) 220 * @param monthLength The length of the given month in days. 226 vzone_getOffset2(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day,
|
/frameworks/base/media/libdrm/mobile1/src/jni/ |
drm1_jni.c | 39 #define DAY_PER_MONTH 30 /* Days per month */ 48 /** Accumulated number of days from 01-Jan up to start of current month. */ 305 * \param month the month (1 - 12) 315 uint32_t year, uint32_t month, uint32_t day, 325 && month > 0 && month <= 12 331 day += ydays[month - 1] + (month > 2 && leap (year)) - 1; 348 * <code>date = year * 10000 + month * 100 + day</code 356 int32_t year, month, day, hour, minute, second; local 399 int32_t year, month, day, hour, minute, second; local [all...] |
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9/ |
date-format-tofte.js | 71 // Day of the month, 2 digits with leading zeros 80 // A full textual representation of a month 114 // Day of the month without leading zeros 135 // Numeric representation of a month, with leading zeros 141 // A short textual representation of a month, three letters 145 // Numeric representation of a month, without leading zeros 167 // English ordinal suffix for the day of the month, 2 characters
|
/external/webkit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/ |
date-format-tofte.js | 71 // Day of the month, 2 digits with leading zeros 80 // A full textual representation of a month 114 // Day of the month without leading zeros 135 // Numeric representation of a month, with leading zeros 141 // A short textual representation of a month, three letters 145 // Numeric representation of a month, without leading zeros 167 // English ordinal suffix for the day of the month, 2 characters
|
/external/icu4c/i18n/unicode/ |
calendar.h | 54 * <code>YEAR</code>, <code>MONTH</code>, <code>DAY</code>, <code>HOUR</code>, 90 * <code>UDate</code> (such as only year and month but no day in the month), 98 * start of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc. 109 * MONTH + DAY_OF_MONTH 110 * MONTH + WEEK_OF_MONTH + DAY_OF_WEEK 111 * MONTH + DAY_OF_WEEK_IN_MONTH + DAY_OF_WEEK 130 * month, day-of-month <em>and</em> day-of-week in some cases. 154 * month up in the date <code>December 12, <b>1996</b></code> results i [all...] |
rbtz.h | 140 * @param month The reference date's month (0-based; 0 is January) 141 * @param day The reference date's day-in-month (1-based) 148 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, 161 * @param month The reference date's month (0-based; 0 is January) 162 * @param day The reference date's day-in-month (1-based) 165 * @param monthLength The length of the given month in days. 170 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
|
timezone.h | 341 * @param month The reference date's month (0-based; 0 is January) 342 * @param day The reference date's day-in-month (1-based) 349 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day, 362 * @param month the month in the given date. 363 * Month is 0-based. e.g., 0 for January. 364 * @param day the day-in-month of the given date. 367 * @param monthLength the length of the given month in days. 372 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day [all...] |
/libcore/luni/src/main/java/java/util/ |
Calendar.java | 32 * {@code YEAR}, {@code MONTH}, {@code DAY}, 57 * fields, as well as their meaning. For example, the first month of the year 58 * has value {@code MONTH} == {@code JANUARY} for all calendars. 66 * {@code GregorianCalendar} interprets {@code MONTH} == 72 * values between 1 and the length of the month. 84 * the first week of the month or year as a reference point. The first week of a 85 * month or year is defined as the earliest seven day period beginning on 87 * {@code getMinimalDaysInFirstWeek()} days of that month or year. Weeks 97 * {@code Date} (such as only year and month but no day in the month), o [all...] |
/external/chromium/base/ |
time_posix.cc | 91 exploded->month = timestruct.tm_mon + 1; 107 timestruct.tm_mon = exploded.month - 1;
|
/external/kernel-headers/original/linux/ |
rtc.h | 104 extern int rtc_month_days(unsigned int month, unsigned int year); 105 extern int rtc_year_days(unsigned int day, unsigned int month, unsigned int year);
|
/frameworks/base/core/jni/ |
Time.cpp | 69 static inline int days_this_month(int year, int month) 71 int n = DAYS_PER_MONTH[month];
|