HomeSort by relevance Sort by last modified time
    Searched refs:month (Results 226 - 250 of 603) sorted by null

1 2 3 4 5 6 7 8 91011>>

  /external/icu/icu4c/source/i18n/unicode/
vtzone.h 206 * @param month The reference date's month (0-based; 0 is January)
207 * @param day The reference date's day-in-month (1-based)
214 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
227 * @param month The reference date's month (0-based; 0 is January)
228 * @param day The reference date's day-in-month (1-based)
231 * @param monthLength The length of the given month in days.
236 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
390 int32_t month, int32_t dayOfMonth, UDate startTime, UDate untilTime
    [all...]
  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
AbstractTestLog.java 115 public boolean isDateAtLeast(int year, int month, int day){
117 Calendar c = new GregorianCalendar(year, month, day);
  /external/libchrome/base/third_party/nspr/
prtime.cc 109 * each month, where index 1 is January, and day 0 is January 1.
118 * The number of days in a month
315 /* Normalize month and year before mday */
325 /* Now that month and year are in proper range, normalize mday */
330 /* the previous month */
464 TIME_TOKEN month = TT_UNKNOWN; local
493 if (month == TT_UNKNOWN &&
496 month = TT_APR;
501 else if (month == TT_UNKNOWN &&
504 month = TT_AUG
    [all...]
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
AlarmUtil.java 55 alarmTime.set(Calendar.MONTH, alarm.month);
66 String.format("Alarm scheduled at (%2d:%02d) Date: %d, Month: %d",
68 alarm.month, alarm.date));
103 int month = extras.getInt(AlarmIntentService.KEY_ALARM_MONTH); local
108 return new Alarm(id, month, date, hour, minute);
114 extras.putInt(AlarmIntentService.KEY_ALARM_MONTH, alarm.month);
AlarmStorage.java 62 * @param month the integer represents a month
68 public Alarm saveAlarm(int month, int date, int hour, int minute) {
72 alarm.month = month;
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
AlarmUtil.java 55 alarmTime.set(Calendar.MONTH, alarm.month);
66 String.format("Alarm scheduled at (%2d:%02d) Date: %d, Month: %d",
68 alarm.month, alarm.date));
103 int month = extras.getInt(AlarmIntentService.KEY_ALARM_MONTH); local
108 return new Alarm(id, month, date, hour, minute);
114 extras.putInt(AlarmIntentService.KEY_ALARM_MONTH, alarm.month);
AlarmStorage.java 62 * @param month the integer represents a month
68 public Alarm saveAlarm(int month, int date, int hour, int minute) {
72 alarm.month = month;
  /development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
AlarmUtil.java 55 alarmTime.set(Calendar.MONTH, alarm.month);
65 String.format("Alarm scheduled at (%2d:%02d) Date: %d, Month: %d",
67 alarm.month, alarm.date));
102 int month = extras.getInt(AlarmIntentService.KEY_ALARM_MONTH); local
107 return new Alarm(id, month, date, hour, minute);
113 extras.putInt(AlarmIntentService.KEY_ALARM_MONTH, alarm.month);
AlarmStorage.java 62 * @param month the integer represents a month
68 public Alarm saveAlarm(int month, int date, int hour, int minute) {
72 alarm.month = month;
  /external/apache-http/android/src/android/net/http/
LegacyHttpDateTime.java 55 * Mon can be the full name of the month.
89 int month = Calendar.JANUARY; local
96 month = getMonth(rfcMatcher.group(2));
102 month = getMonth(ansicMatcher.group(1));
114 month = Calendar.JANUARY;
120 month, year);
  /external/python/cpython2/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)
586 month = c.formatmonth variable
    [all...]
  /external/python/cpython3/Lib/test/
test_calendar.py 111 default_format = dict(year="year", month="month", encoding="ascii")
124 <tr><th colspan="3" class="{year}">2004</th></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="{month}">
125 <tr><th colspan="7" class="{month}">January</th></tr>
133 </td><td><table border="0" cellpadding="0" cellspacing="0" class="{month}">
134 <tr><th colspan="7" class="{month}">February</th></tr>
142 </td><td><table border="0" cellpadding="0" cellspacing="0" class="{month}">
143 <tr><th colspan="7" class="{month}">March</th></tr>
151 </td></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="{month}">
152 <tr><th colspan="7" class="{month}">April</th></tr
    [all...]
  /external/webrtc/webrtc/base/
timeutils.cc 212 int month = tm.tm_mon; local
223 if (month < 0 || month > 11)
225 if (day < 0 || day >= mdays[month] + (expiry_in_leap_year && month == 2 - 1))
234 day += cumul_mdays[month];
242 if (expiry_in_leap_year && month <= 2 - 1) // |month| is zero based.
245 // Combine all variables into seconds from 1970-01-01 00:00 (except |month|
  /external/u-boot/board/compulab/common/
eeprom.c 285 static int validate_date(unsigned char day, unsigned char month,
290 switch (month) {
362 unsigned char month; local
363 for (month = 1; month <= 12; month++)
364 if (!strcmp(tok2, months[month - 1]))
373 if (validate_date(day, month - 1, year)) {
384 field->buf[1] = month;
  /external/python/cpython2/Lib/test/
test_calendar.py 69 <tr><th colspan="3" class="year">2004</th></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="month">
70 <tr><th colspan="7" class="month">January</th></tr>
78 </td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
79 <tr><th colspan="7" class="month">February</th></tr>
87 </td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
88 <tr><th colspan="7" class="month">March</th></tr>
96 </td></tr><tr><td><table border="0" cellpadding="0" cellspacing="0" class="month">
97 <tr><th colspan="7" class="month">April</th></tr>
105 </td><td><table border="0" cellpadding="0" cellspacing="0" class="month">
106 <tr><th colspan="7" class="month">May</th></tr
    [all...]
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/
CreditCardExpirationDateCompoundView.java 40 * 2 {@link Spinner spinners} to represent the credit card expiration month and year.
105 int month = mCcExpMonthSpinner.getSelectedItemPosition(); local
107 calendar.set(Calendar.MONTH, month);
120 int month = calendar.get(Calendar.MONTH); local
122 mCcExpMonthSpinner.setSelection(month);
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/
CreditCardExpirationDateCompoundView.java 40 * 2 {@link Spinner spinners} to represent the credit card expiration month and year.
105 int month = mCcExpMonthSpinner.getSelectedItemPosition(); local
107 calendar.set(Calendar.MONTH, month);
120 int month = calendar.get(Calendar.MONTH); local
122 mCcExpMonthSpinner.setSelection(month);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
TestCase.java 67 get(Calendar.YEAR) + "/" + (get(Calendar.MONTH)+1) + "/" +
87 * @param month The MONTH (1-based) field of tested calendar on the given julian day
95 int era, int year, int month, int day,
103 set(Calendar.MONTH, month - 1);
112 * Initialize a TestCase object using a Gregorian year/month/day and
116 * @param gregMonth The Gregorian month of the date to be tested
117 * @param gregDay The Gregorian day of the month of the date to be tested
121 * @param month The MONTH (0-based) field of tested calendar on the given gregorian dat
    [all...]
  /external/icu/icu4c/source/i18n/
buddhcal.h 162 * given month in the given extended year. Subclasses should override
165 * @param month the zero-based month, or 0 if useMonth is false
168 * the given month
170 * day of the given month and year
173 virtual int32_t handleComputeMonthStart(int32_t eyear, int32_t month,
coptccal.h 36 * the 1st month of the Coptic year.
42 * the 2nd month of the Coptic year.
48 * the 3rd month of the Coptic year.
54 * the 4th month of the Coptic year.
60 * the 5th month of the Coptic year.
66 * the 6th month of the Coptic year.
72 * the 7th month of the Coptic year.
78 * the 8th month of the Coptic year.
84 * the 9th month of the Coptic year.
90 * the 10th month of the Coptic year.
    [all...]
erarules.h 46 * @param fields Receives date fields. The result includes values of year, month,
47 * day of month in this order. When an era has no start date, the result
63 * Returns era index for the specified year/month/day.
65 * @param month Month (1-base)
66 * @param day Day of month
70 int32_t getEraIndex(int32_t year, int32_t month, int32_t day, UErrorCode& status) const;
japancal.h 202 * Called by computeJulianDay. Returns the default month (0-based) for the year,
203 * taking year and era into account. Will return the first month of the given era, if
211 * Called by computeJulianDay. Returns the default day (1-based) for the month,
213 * era, if the current month is an ascension year and month.
215 * @param mon the month in the year
218 virtual int32_t getDefaultDayInMonth(int32_t eyear, int32_t month);
  /external/icu/icu4c/source/test/intltest/
tzrulets.h 50 UDate getUTCMillis(int32_t year, int32_t month, int32_t dom,
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
TestCase.java 64 get(Calendar.YEAR) + "/" + (get(Calendar.MONTH)+1) + "/" +
84 * @param month The MONTH (1-based) field of tested calendar on the given julian day
92 int era, int year, int month, int day,
100 set(Calendar.MONTH, month - 1);
109 * Initialize a TestCase object using a Gregorian year/month/day and
113 * @param gregMonth The Gregorian month of the date to be tested
114 * @param gregDay The Gregorian day of the month of the date to be tested
118 * @param month The MONTH (0-based) field of tested calendar on the given gregorian dat
    [all...]
  /external/libchrome/crypto/
nss_util_unittest.cc 23 exploded.month = 12;

Completed in 4270 milliseconds

1 2 3 4 5 6 7 8 91011>>