/developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/ |
CreditCardExpirationDatePickerView.java | 45 * credit card expiration month and year. 52 * Calendar instance used for month / year calculations. Should be reset before each use. 74 mMonth = mTempCalendar.get(Calendar.MONTH); 78 * Gets a temporary calendar set with the View's year and month. 83 mTempCalendar.set(Calendar.MONTH, mMonth); 105 int month = mTempCalendar.get(Calendar.MONTH); local 106 if (DEBUG) Log.d(TAG, "autofill(" + value + "): " + month + "/" + year); 107 setDate(year, month); 110 private void setDate(int year, int month) { [all...] |
/developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/ |
CreditCardExpirationDatePickerView.java | 45 * credit card expiration month and year. 52 * Calendar instance used for month / year calculations. Should be reset before each use. 74 mMonth = mTempCalendar.get(Calendar.MONTH); 78 * Gets a temporary calendar set with the View's year and month. 83 mTempCalendar.set(Calendar.MONTH, mMonth); 105 int month = mTempCalendar.get(Calendar.MONTH); local 106 if (DEBUG) Log.d(TAG, "autofill(" + value + "): " + month + "/" + year); 107 setDate(year, month); 110 private void setDate(int year, int month) { [all...] |
/external/icu/icu4c/source/i18n/unicode/ |
gregocal.h | 102 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl; 124 * cout << "MONTH: " << calendar->get( UCAL_MONTH, success ) << endl; 237 * @param month The value used to set the MONTH time field in the calendar. Month 244 GregorianCalendar(int32_t year, int32_t month, int32_t date, UErrorCode& success); 251 * @param month The value used to set the MONTH time field in the calendar. Month 260 GregorianCalendar(int32_t year, int32_t month, int32_t date, int32_t hour, int32_t minute, UErrorCode& success) [all...] |
/external/v8/src/builtins/ |
builtins-date.cc | 44 // ES6 section 20.3.1.13 MakeDay (year, month, date) 45 double MakeDay(double year, double month, double date) { 47 (kMinMonth <= month && month <= kMaxMonth) && std::isfinite(date)) { 49 int m = FastD2I(month); 147 int year, month, day, weekday, hour, min, sec, ms; local 148 date_cache->BreakDownTime(local_time_ms, &year, &month, &day, &weekday, &hour, 157 kShortMonths[month], day, year); 168 kShortWeekDays[weekday], kShortMonths[month], day, year, hour, 229 double month = month_object->Number() local 299 double month = 0.0, date = 1.0, hours = 0.0, minutes = 0.0, seconds = 0.0, local 367 int year, month, day; local 389 int year, month, day; local 395 Handle<Object> month = args.at(2); local 512 Handle<Object> month = args.atOrUndefined(isolate, 1); local 586 int year, month, day; local 607 int year, month, day; local 613 Handle<Object> month = args.at(2); local 727 Handle<Object> month = args.atOrUndefined(isolate, 1); local 799 int year, month, day, weekday, hour, min, sec, ms; local 805 month + 1, day, hour, min, sec, ms); local 808 month + 1, day, hour, min, sec, ms); local 811 month + 1, day, hour, min, sec, ms); local 848 int year, month, day, weekday, hour, min, sec, ms; local 866 int year, month, day; local 888 int year, month, day; local [all...] |
/external/python/dateutil/dateutil/ |
relativedelta.py | 35 year, month, day, hour, minute, second, microsecond: 60 These are converted to day/month/leapdays information. 69 3. Do steps 1 and 2 for month/months. 73 subtract from the day until it fits in the year and month 94 year=None, month=None, day=None, weekday=None, 122 self.month = None 131 # Get year / month delta between the two 132 months = (dt1.year - dt2.year) * 12 + (dt1.month - dt2.month) 135 # Remove the year/month delta so the timedelta is just well-define [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
test_calendar.py | 57 <tr><th colspan="3" class="year">2004</th></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="month">
58 <tr><th colspan="7" class="month">January</th></tr>
66 </td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
67 <tr><th colspan="7" class="month">February</th></tr>
75 </td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
76 <tr><th colspan="7" class="month">March</th></tr>
84 </td></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="month">
85 <tr><th colspan="7" class="month">April</th></tr>
93 </td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
94 <tr><th colspan="7" class="month">May</th></tr> [all...] |
/external/v8/src/ |
date.cc | 86 int days, int* year, int* month, int* day) { 89 // the same year and month as the cached 'days'. 95 *month = ymd_month_; 141 *month = i; 150 *month = 0; 153 *month = 1; 157 DCHECK(DaysFromYearMonth(*year, *month) + *day - 1 == save_days); 160 ymd_month_ = *month; 166 int DateCache::DaysFromYearMonth(int year, int month) { 172 year += month / 12 [all...] |
date.h | 129 int year, month, day; local 130 YearMonthDayFromDays(days, &year, &month, &day); 131 int new_days = DaysFromYearMonth(EquivalentYear(year), month) + day - 1; 148 // the corresponding year, month, and day. 149 void YearMonthDayFromDays(int days, int* year, int* month, int* day); 152 // the first day of the given month in the given year. 153 int DaysFromYearMonth(int year, int month); 156 void BreakDownTime(int64_t time_ms, int* year, int* month, int* day, 230 // Year/Month/Day cache.
|
dateparser.cc | 15 // Day and month defaults to 1. 21 int month = kNone; local 28 month = comp_[1]; 32 month = comp_[0]; 37 month = named_month_; 57 if (!Smi::IsValid(year) || !IsMonth(month) || !IsDay(day)) return false; 60 output->set(MONTH, Smi::FromInt(month - 1)); // 0-based 162 // Word longer than keyword is only allowed for month names.
|
/external/icu/icu4c/source/i18n/ |
simpletz.cpp | 278 * day of week in the month (e.g., (2, WEDNESDAY) is the second Wednesday 279 * of the month). 281 * the day of week in the month counting backward from the end of the month. 282 * (e.g., (-1, MONDAY) is the last Monday in the month) 284 * specifies the day of the month, regardless of what day of the week it is. 285 * (e.g., (10, 0) is the tenth day of the month) 287 * specifies the day of the month counting backward from the end of the 288 * month, regardless of what day of the week it is (e.g., (-2, 0) is the 289 * next-to-last day of the month) 518 int32_t year, month, dom, dow; local [all...] |
vtzone.cpp | 79 // Month length for non-leap year 192 int32_t year, month, dom, dow, doy, mid; local 193 Grego::timeToFields(time, year, month, dom, dow, doy, mid); 197 appendAsciiDigits(month + 1, 2, str); 232 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0; local 255 month = parseAsciiDigits(str, 4, 2, status) - 1; // 0-based 266 int32_t maxDayOfMonth = Grego::monthLength(year, month); 267 if (year < 0 || month < 0 || month > 11 || day < 1 || day > maxDayOfMonth || 280 UDate time = Grego::fieldsToDay(year, month, day) * U_MILLIS_PER_DAY 541 int32_t month, dayOfWeek, nthDayOfWeek, dayOfMonth = 0; local 817 int32_t month = -1, dom = 0, dow = 0; local 1931 int32_t year, month, dom, dow, doy, mid; local [all...] |
gregocal.cpp | 83 { 0, 0, 11, 11}, // MONTH 113 * MONTH 0 0 11 11 222 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, 231 set(UCAL_MONTH, month); 237 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, 246 set(UCAL_MONTH, month); 254 GregorianCalendar::GregorianCalendar(int32_t year, int32_t month, int32_t date, 264 set(UCAL_MONTH, month); 369 int32_t eyear, month, dayOfMonth, dayOfYear, unusedRemainder; local 383 month = getGregorianMonth() [all...] |
/external/icu/android_icu4j/src/main/java/android/icu/util/ |
EthiopicCalendar.java | 34 * Constant for ?????, the 1st month of the Ethiopic year. 39 * Constant for ????, the 2nd month of the Ethiopic year. 44 * Constant for ???, the 3rd month of the Ethiopic year. 49 * Constant for ????, the 4th month of the Ethiopic year. 54 * Constant for ??, the 5th month of the Ethiopic year. 59 * Constant for ????, the 6th month of the Ethiopic year. 64 * Constant for ????, the 7th month of the Ethiopic year. 69 * Constant for ????, the 8th month of the Ethiopic year. 74 * Constant for ????, the 9th month of the Ethiopic year. 79 * Constant for ??, the 10th month of the Ethiopic year. [all...] |
/external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/ |
EthiopicCalendar.java | 34 * Constant for ?????, the 1st month of the Ethiopic year. 40 * Constant for ????, the 2nd month of the Ethiopic year. 46 * Constant for ???, the 3rd month of the Ethiopic year. 52 * Constant for ????, the 4th month of the Ethiopic year. 58 * Constant for ??, the 5th month of the Ethiopic year. 64 * Constant for ????, the 6th month of the Ethiopic year. 70 * Constant for ????, the 7th month of the Ethiopic year. 76 * Constant for ????, the 8th month of the Ethiopic year. 82 * Constant for ????, the 9th month of the Ethiopic year. 88 * Constant for ??, the 10th month of the Ethiopic year. [all...] |
/external/icu/icu4c/source/test/intltest/ |
calcasts.h | 33 int32_t month; member in struct:CalendarCaseTest::TestCase
|
/external/libcxx/test/std/utilities/time/time.cal/time.cal.ymwd/time.cal.ymwd.members/ |
ctor.local_days.pass.cpp | 23 // constexpr chrono::month month() const noexcept; 49 static_assert( ymwd.month() == std::chrono::January, ""); 62 static_assert( ymwd.month() == std::chrono::February, ""); 76 static_assert( ymwd.month() == std::chrono::January, ""); 89 assert( ymwd.month() == std::chrono::November);
|
ctor.sys_days.pass.cpp | 23 // constexpr chrono::month month() const noexcept; 48 static_assert( ymwd.month() == std::chrono::January, ""); 61 static_assert( ymwd.month() == std::chrono::February, ""); 75 static_assert( ymwd.month() == std::chrono::January, ""); 88 assert( ymwd.month() == std::chrono::November);
|
/external/markdown/markdown/extensions/ |
rss.py | 27 month, date, year = heading.split() 28 month = month_map[month] 30 return rdftime(" ".join((month, date, year, "12:00:00 AM")))
|
/external/protobuf/src/google/protobuf/stubs/ |
time.h | 41 int month; member in struct:google::protobuf::internal::DateTime
|
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/ |
calendar.py | 14 "monthcalendar", "prmonth", "month", "prcal", "calendar",
22 def __init__(self, month):
23 self.month = month
25 return "bad month number %r; must be 1-12" % self.month
39 # Number of days per month (except for February in leap years)
42 # This module used to have hard-coded lists of day and month names, as
110 def weekday(year, month, day):
111 """Return weekday (0-6 ~ Mon-Sun) for year (1970-...), month (1-12), 585 month = c.formatmonth variable [all...] |
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/ |
calendar.py | 14 "monthcalendar", "prmonth", "month", "prcal", "calendar",
22 def __init__(self, month):
23 self.month = month
25 return "bad month number %r; must be 1-12" % self.month
39 # Number of days per month (except for February in leap years)
42 # This module used to have hard-coded lists of day and month names, as
110 def weekday(year, month, day):
111 """Return weekday (0-6 ~ Mon-Sun) for year (1970-...), month (1-12), 580 month = c.formatmonth variable [all...] |
/cts/tests/tests/location/src/android/location/cts/asn1/base/ |
Asn1UTCTime.java | 36 private int month; field in class:Asn1UTCTime 53 month = other.month; 69 return month; 73 month = newMonth; 111 builder.append(twoDigit.format(month)); 127 builder.append(twoDigit.format(month)); 206 month = Integer.parseInt(result.substring(yearLength, yearLength + 2));
|
/developers/build/prebuilts/gradle/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/ |
CreditCardExpirationDateView.kt | 80 val month = ccExpMonth.selectedItemPosition 82 set(Calendar.MONTH, month) 92 val month = calendar.get(Calendar.MONTH) 94 ccExpMonth.setSelection(month)
|
/developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/app/ |
CreditCardExpirationDateView.kt | 80 val month = ccExpMonth.selectedItemPosition 82 set(Calendar.MONTH, month) 92 val month = calendar.get(Calendar.MONTH) 94 ccExpMonth.setSelection(month)
|
/external/icu/android_icu4j/src/main/tests/android/icu/dev/test/ |
AbstractTestLog.java | 116 public boolean isDateAtLeast(int year, int month, int day){ 118 Calendar c = new GregorianCalendar(year, month, day);
|