/prebuilt/ndk/android-ndk-r4/platforms/android-3/arch-arm/usr/include/linux/mmc/ |
card.h | 25 unsigned char month; member in struct:mmc_cid
|
/prebuilt/ndk/android-ndk-r4/platforms/android-4/arch-arm/usr/include/linux/mmc/ |
card.h | 25 unsigned char month; member in struct:mmc_cid
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-arm/usr/include/linux/mmc/ |
card.h | 25 unsigned char month; member in struct:mmc_cid
|
/prebuilt/ndk/android-ndk-r4/platforms/android-5/arch-x86/usr/include/linux/mmc/ |
card.h | 25 unsigned char month; member in struct:mmc_cid
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-arm/usr/include/linux/mmc/ |
card.h | 25 unsigned char month; member in struct:mmc_cid
|
/prebuilt/ndk/android-ndk-r4/platforms/android-8/arch-x86/usr/include/linux/mmc/ |
card.h | 25 unsigned char month; member in struct:mmc_cid
|
/prebuilt/ndk/android-ndk-r5/platforms/android-3/arch-arm/usr/include/linux/mmc/ |
card.h | 25 unsigned char month; member in struct:mmc_cid
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-arm/usr/include/linux/mmc/ |
card.h | 25 unsigned char month; member in struct:mmc_cid
|
/prebuilt/ndk/android-ndk-r6/platforms/android-3/arch-x86/usr/include/linux/mmc/ |
card.h | 25 unsigned char month; member in struct:mmc_cid
|
/libcore/luni/src/main/java/java/text/ |
SimpleDateFormat.java | 65 * <tr> <td>{@code F}</td> <td>day of week in month</td> <td>(Number)</td> <td>2 <i>(2nd Wed in July)</i></td> </tr> 69 * <tr> <td>{@code L}</td> <td>stand-alone month</td> <td>(Text/Number)</td> <td>July / 07</td> </tr> 70 * <tr> <td>{@code M}</td> <td>month in year</td> <td>(Text/Number)</td> <td>July / 07</td> </tr> 72 * <tr> <td>{@code W}</td> <td>week in month</td> <td>(Number)</td> <td>2</td> </tr> 76 * <tr> <td>{@code d}</td> <td>day in month</td> <td>(Number)</td> <td>10</td> </tr> 205 // 'L' and 'c' are ICU-compatible extensions for stand-alone month and stand-alone weekday. 614 dateFormatField = Field.MONTH; 618 dateFormatField = Field.MONTH; 720 int month = calendar.get(Calendar.MONTH); local [all...] |
DateFormat.java | 182 * to the {@link Calendar#MONTH} field. 754 * Marks the month part of a date. 756 public static final Field MONTH = new Field("month", Calendar.MONTH); 789 * Marks the day of the month part of a date. 791 public static final Field DAY_OF_MONTH = new Field("day of month", Calendar.DAY_OF_MONTH); 799 * Marks the day of the week in the month part of a date. 801 public static final Field DAY_OF_WEEK_IN_MONTH = new Field("day of week in month", 811 * Marks the week of the month part of a date [all...] |
/external/iptables/extensions/ |
libxt_time.man | 22 Only match on the given days of the month. Possible values are \fB1\fP 80 The fourth Friday in the month:
|
/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);
|
/external/v8/src/ |
dateparser-inl.h | 76 in.Skip('-'); // Ignore suffix '-' for year, month, or day. 92 in.Skip('-'); // Ignore suffix '-' for month names
|
/external/webkit/Source/JavaScriptCore/runtime/ |
DateConversion.cpp | 74 monthName[t.month], t.monthDay, t.year + 1900); 81 t.monthDay, monthName[t.month], t.year + 1900);
|
/external/webkit/Source/WebCore/css/ |
themeWin.css | 41 input[type="month"], 78 input[type="month"]:disabled,
|
/frameworks/base/core/jni/ |
Time.cpp | 69 static inline int days_this_month(int year, int month) 71 int n = DAYS_PER_MONTH[month];
|
/frameworks/base/media/libdrm/mobile1/src/parser/ |
parser_rel.c | 25 int32_t drm_monthDays(int32_t year, int32_t month) 27 switch (month) { 51 int32_t drm_checkDate(int32_t year, int32_t month, int32_t day, 54 if (month >= 1 && month <= 12 && 55 day >= 1 && day <= drm_monthDays(year, month) && 85 /** get month */ 354 /** get month */
|
/external/icu4c/test/intltest/ |
tsdtfmsy.cpp | 40 const UnicodeString* month; local 45 month=symbol->getMonths(cnt); 51 logln(month[i]); 70 const UnicodeString * month = symbol->getMonths(cnt,context[i],width[j]); local 75 logln(month[k]);
|
/external/stlport/src/ |
c_locale.h | 381 * month is in the range [0, 12). 383 const char * _Locale_full_monthname(struct _Locale_time *, int /* month */); 384 const char * _Locale_abbrev_monthname(struct _Locale_time *, int /* month */); 387 const wchar_t * _WLocale_full_monthname(struct _Locale_time *, int /* month */, 389 const wchar_t * _WLocale_abbrev_monthname(struct _Locale_time *, int /* month */,
|
/external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/Date/ |
15.9.3.1-1.js | 24 ECMA Section: 15.9.3.1 new Date (year, month, date, hours, minutes, seconds, ms) 32 2. Call ToNumber(month) 59 var TITLE = "new Date( year, month, date, hours, minutes, seconds, ms )"; 72 var MONTH = 10; 253 testcases[item++] = new TestCase( SECTION, DateString+".getMonth()", ResultArray[MONTH], DateCase.getMonth() );
|
/libcore/luni/src/test/java/tests/api/java/util/ |
DateTest.java | 252 assertEquals("Returned incorrect month", 9, d.getMonth()); 315 assertEquals("Parsed incorrect month", 9, cal.get(Calendar.MONTH)); 391 assertEquals("Set incorrect month", 0, d.getMonth()); 448 cal.set(Calendar.MONTH, Calendar.JANUARY);
|
/ndk/sources/cxx-stl/stlport/src/ |
c_locale.h | 381 * month is in the range [0, 12). 383 const char * _Locale_full_monthname(struct _Locale_time *, int /* month */); 384 const char * _Locale_abbrev_monthname(struct _Locale_time *, int /* month */); 387 const wchar_t * _WLocale_full_monthname(struct _Locale_time *, int /* month */, 389 const wchar_t * _WLocale_abbrev_monthname(struct _Locale_time *, int /* month */,
|
/external/icu4c/i18n/unicode/ |
dtitvfmt.h | 96 * year, month, date, day-of-week, am-pm, hour, hour-of-day, and minute. 98 * year > month > date > hour (in day) > minute 119 * If the largest different calendar field between date1 and date2 is "month", 125 * For date skeleton, the interval patterns when year, or month, or date is 143 * when the year, month, or day differs, falls back to fall-back 166 * For example, if user only requests year and month, 258 * "EEE, d MMM - EEE, d MMM, yyyy" for month differs, 679 * 1) when the year, month, or day differs, concatenate the two original 695 * includes year, month, and date when year, month, and date differs [all...] |
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...] |