/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/mmc/ |
card.h | 22 unsigned short year; member in struct:mmc_cid
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/mmc/ |
card.h | 22 unsigned short year; member in struct:mmc_cid
|
/external/chromium/chrome/browser/extensions/ |
convert_web_app_unittest.cc | 64 base::Time GetTestTime(int year, int month, int day, int hour, int minute, 67 exploded.year = year;
|
/external/chromium/chrome/browser/history/ |
text_database.cc | 85 // Identifiers are intended to be a combination of the year and month, for 114 int year, month; local 115 base::StringToInt(suffix.begin(), suffix.begin() + 4, &year); 118 return year * 100 + month;
|
/external/v8/test/mjsunit/ |
to_number_order.js | 59 var year = { valueOf: function() { x += 1; return 2007; } }; 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); 126 new Date().setFullYear(year, month, date, hours, minutes, seconds, ms); 130 new Date().setUTCFullYear(year, month, date, hours, minutes, seconds, ms);
|
/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 || 61 tm.tm_year = year - 1900;
|
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 || 58 tm.tm_year = year - 1900;
|
/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 || 61 tm.tm_year = year - 1900;
|
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 || 58 tm.tm_year = year - 1900;
|
/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 || 61 tm.tm_year = year - 1900;
|
os_unix.c | 67 int os_mktime(int year, int month, int day, int hour, int min, int sec, 74 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 || 80 tm.tm_year = year - 1900;
|
/external/iptables/extensions/ |
libxt_time.c | 91 unsigned int year = end ? 2038 : 1970; local 97 year = strtoul(s, &e, 10); 98 if ((*e != '-' && *e != '\0') || year < 1970 || year > 2038) 137 tm.tm_year = year - 1900;
|
/external/icu4c/tools/tzcode/ |
zic.c | 181 static int yearistype(int year, const char * type); 286 ** Year synonyms. 316 * with finalRules[i] occurring before finalRules[i+1] in the year. 317 * Each zone need only store a start year, a standard offset, and an 522 fprintf(f, " # zone %s, offset %d, year >= %d, rule %s (%d)\n", 538 warning("year types not supported by ICU"); 1262 int year, month, day; local 1272 if (sscanf(cp, scheck(cp, "%d"), &year) != 1) { 1276 error(_("invalid leaping year")); 1279 if (!leapseen || leapmaxyear < year) 2107 register int year; local [all...] |
tz2icu.cpp | 74 * Given a calendar year, return the GMT epoch seconds for midnight 75 * GMT of January 1 of that year. yearToSeconds(1970) == 0. 77 int64_t yearToSeconds(int32_t year) { 81 while (y < year) { 84 while (y > year) { 91 * Given 1970 GMT epoch seconds, return the calendar year containing 733 int32_t year; // takes effect for y >= year member in struct:FinalZone 737 offset(_offset), year(_year), ruleid(_ruleid) { 741 << " for year " << yea 952 int32_t offset, year; local 1362 int32_t year = fz.year; local [all...] |
/external/icu4c/test/intltest/ |
caltest.cpp | 529 int32_t year = 1997, month = UCAL_APRIL, date = 1; 530 gc->set(year, month, date); 537 if (gc->get(UCAL_YEAR, status) != year || 697 /* Note: The following test used to expect YEAR 1997, WOY 1 to 701 * desired. Using YEAR in combination with WOY is ambiguous, and 702 * results in the first WOY/DOW day of the year satisfying the 706 * _calendar_ year 1997, as specified. - aliu */ 712 c->clear(); // - add test for YEAR 717 verify765("1997 Tuesday in week 1 of year = ", c, 1997, UCAL_DECEMBER, 30); 722 verify765("1997 Tuesday in week 10 of year = ", c, 1997, UCAL_MARCH, 4) 1243 int32_t year = 1997; local 1681 int32_t year = cal.get(UCAL_YEAR, status); local [all...] |
/external/webkit/Source/JavaScriptCore/tests/mozilla/ |
jsDriver.pl | [all...] |
/system/core/libcutils/ |
tzstrftime.c | 391 case 'G': /* ISO 8601 year (four digits) */ 392 case 'g': /* ISO 8601 year (two digits) */ 395 ** year (the first Monday as the first day of week 1) as a decimal number 400 ** "Week 01 of a year is per definition the first week which has the 401 ** Thursday in this year, which is equivalent to the week which contains 402 ** the fourth day of January. In other words, the first week of a new year 403 ** is the week which has the majority of its days in the new year. Week 01 404 ** might also contain days from the previous year and the week before week 405 ** 01 of a year is the last week (52 or 53) of the previous year even i 412 int year; local [all...] |
/external/chromium/base/metrics/ |
field_trial.h | 107 // to the total_probability. Arguments year, month and day_of_month specify 111 const std::string& default_group_name, const int year,
|
/external/chromium/net/ftp/ |
ftp_util_unittest.cc | 148 // Test current year detection. 168 EXPECT_EQ(kTestCases[i].expected_year, time_exploded.year);
|
/external/icu4c/test/cintltst/ |
utmstest.c | 349 int32_t year; member in struct:DotNetDateTimeTicks 358 * Console::WriteLine(L" {{ {0}, 1, 1, INT64_C({1}) }},", year, DateTime(year, 1, 1).Ticks); 359 * with the DateTime constructor taking int values for year, month, and date. 362 /* year, month, day, ticks */ 467 ucal_setDate(cal, dt->year, dt->month - 1, dt->day, &errorCode); /* Java & ICU use January = month 0. */ 472 (int)i, (int)(millis/dayMillis), (int)(icuDate/dayMillis), (int)dt->year, (int)dt->month, (int)dt->day); 480 (int)i, (int)(ticks/dayTicks), (int)(dt->ticks/dayTicks), (int)dt->year, (int)dt->month, (int)dt->day);
|
/external/qemu/hw/ |
mc146818rtc.c | 305 int year; local 321 year = (tm->tm_year - s->base_year) % 100; 322 if (year < 0) 323 year += 100; 324 s->cmos_data[RTC_YEAR] = rtc_to_bcd(s, year); 328 static int get_days_in_month(int month, int year) 338 if ((year % 4) == 0 && ((year % 100) != 0 || (year % 400) == 0))
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma_3/Date/ |
15.9.5.4.js | 48 var year = ''; variable
|
15.9.5.7.js | 52 var year = ''; variable
|
/external/webkit/Source/WebCore/html/ |
FTPDirectoryDocument.cpp | 180 static bool wasLastDayOfMonth(int year, int month, int day) 187 if (year % 4 == 0 && (year % 100 || year % 400 == 0)) { 228 // localtime does "year = current year - 1900", compensate for that for readability and comparison purposes
|
/libcore/luni/src/main/java/java/text/ |
SimpleDateFormat.java | 63 * <tr> <td>{@code D}</td> <td>day in year</td> <td>(Number)</td> <td>189</td> </tr> 70 * <tr> <td>{@code M}</td> <td>month in year</td> <td>(Text/Number)</td> <td>July / 07</td> </tr> 81 * <tr> <td>{@code w}</td> <td>week in year</td> <td>(Number)</td> <td>27</td> </tr> 82 * <tr> <td>{@code y}</td> <td>year</td> <td>(Number)</td> <td>2010</td> </tr> 379 calendar.add(Calendar.YEAR, -80); 380 creationYear = calendar.get(Calendar.YEAR); 435 * properties, pattern, {@code DateFormatSymbols} and creation year. 600 dateFormatField = Field.YEAR; 601 int year = calendar.get(Calendar.YEAR); local [all...] |