Searched refs:month (Results 126 - 150 of 389) sorted by relevance

1234567891011>>

/external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
H A DShadowTime.java51 time.month = other.month;
123 public void set(int second, int minute, int hour, int monthDay, int month, int year) { argument
128 time.month = month;
137 public void set(int monthDay, int month, int year) { argument
138 set(0, 0, 0, monthDay, month, year);
152 time.month = 0;
260 c.set(time.year, time.month, time.monthDay, time.hour, time.minute, time.second);
/external/wpa_supplicant_8/hostapd/src/utils/
H A Dos_win32.c61 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
68 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 ||
75 tm.tm_mon = month - 1;
113 tm->month = tm2->tm_mon + 1;
/external/wpa_supplicant_8/src/utils/
H A Dos_win32.c61 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
68 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 ||
75 tm.tm_mon = month - 1;
113 tm->month = tm2->tm_mon + 1;
/external/wpa_supplicant_8/wpa_supplicant/src/utils/
H A Dos_win32.c61 int os_mktime(int year, int month, int day, int hour, int min, int sec, argument
68 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 ||
75 tm.tm_mon = month - 1;
113 tm->month = tm2->tm_mon + 1;
/external/chromium_org/google_apis/drive/
H A Dtime_util.cc96 !base::StringToInt(parts[1], &exploded.month) ||
153 exploded.year, exploded.month, exploded.day_of_month,
165 exploded.year, exploded.month, exploded.day_of_month,
/external/chromium_org/third_party/WebKit/Source/core/html/forms/
H A DDateTimeLocalInputType.cpp112 dateTimeFieldsState.month(),
123 dateTimeFieldsState.month(),
132 dateTimeFieldsState.month(),
H A DMonthInputType.cpp66 return InputTypeNames::month;
136 return String::format("%04u-%02u", dateTimeFieldsState.year(), dateTimeFieldsState.month());
/external/chromium_org/third_party/icu/source/i18n/
H A Dbasictz.cpp161 int32_t year, month, dom, dow, doy, mid; local
166 year, month, dom, dow, doy, mid);
167 int32_t weekInMonth = Grego::dayOfWeekInMonth(year, month, dom);
169 DateTimeRule *dtr = new DateTimeRule(month, weekInMonth, dow, mid, DateTimeRule::WALL_TIME);
193 year, month, dom, dow, doy, mid);
194 weekInMonth = Grego::dayOfWeekInMonth(year, month, dom);
196 dtr = new DateTimeRule(month, weekInMonth, dow, mid, DateTimeRule::WALL_TIME);
224 year, month, dom, dow, doy, mid);
225 weekInMonth = Grego::dayOfWeekInMonth(year, month, dom);
226 dtr = new DateTimeRule(month, weekInMont
479 int32_t year, month, dom, dow, doy, mid; local
[all...]
H A Dbuddhcal.cpp79 int32_t BuddhistCalendar::handleComputeMonthStart(int32_t eyear, int32_t month, argument
83 return GregorianCalendar::handleComputeMonthStart(eyear, month, useMonth);
H A Dchnsecal.h31 * calendar is a lunisolar calendar: Each month starts on a new moon, and
33 * guarantee that month 11 always contains the winter solstice. In order
35 * months are numbered the same as the month they follow. The decision of
36 * which month is a leap month depends on the relative movements of the sun
164 virtual int32_t handleGetMonthLength(int32_t extendedYear, int32_t month) const;
165 virtual int32_t handleComputeMonthStart(int32_t eyear, int32_t month, UBool useMonth) const;
H A Dethpccal.h42 * Constant for &#x1218;&#x1235;&#x12a8;&#x1228;&#x121d;, the 1st month of the Ethiopic year.
47 * Constant for &#x1325;&#x1245;&#x121d;&#x1275;, the 2nd month of the Ethiopic year.
52 * Constant for &#x1285;&#x12f3;&#x122d;, the 3rd month of the Ethiopic year.
57 * Constant for &#x1273;&#x1285;&#x1223;&#x1225;, the 4th month of the Ethiopic year.
62 * Constant for &#x1325;&#x122d;, the 5th month of the Ethiopic year.
67 * Constant for &#x12e8;&#x12ab;&#x1272;&#x1275;, the 6th month of the Ethiopic year.
72 * Constant for &#x1218;&#x130b;&#x1262;&#x1275;, the 7th month of the Ethiopic year.
77 * Constant for &#x121a;&#x12eb;&#x12dd;&#x12eb;, the 8th month of the Ethiopic year.
82 * Constant for &#x130d;&#x1295;&#x1266;&#x1275;, the 9th month of the Ethiopic year.
87 * Constant for &#x1230;&#x1294;, the 10th month o
[all...]
H A Djapancal.h192 * Called by computeJulianDay. Returns the default month (0-based) for the year,
193 * taking year and era into account. Will return the first month of the given era, if
201 * Called by computeJulianDay. Returns the default day (1-based) for the month,
203 * era, if the current month is an ascension year and month.
205 * @param mon the month in the year
208 virtual int32_t getDefaultDayInMonth(int32_t eyear, int32_t month);
/external/chromium_org/third_party/icu/source/samples/cal/
H A Dcal.c43 static void cal(int32_t month, int32_t year,
115 int32_t month = -1, year = -1; local
152 /* Get the month and year to display, if specified */
157 sscanf(argv[optInd], "%d", (int*)&month);
160 /* Make sure the month value is legal */
161 if(month < 0 || month > 12) {
162 printf("icucal: Bad value for month -- %d\n", (int)month);
169 --month;
226 cal(int32_t month, int32_t year, UBool useLongNames, UErrorCode *status) argument
[all...]
/external/icu/icu4c/source/i18n/
H A Dbasictz.cpp161 int32_t year, month, dom, dow, doy, mid; local
166 year, month, dom, dow, doy, mid);
167 int32_t weekInMonth = Grego::dayOfWeekInMonth(year, month, dom);
169 DateTimeRule *dtr = new DateTimeRule(month, weekInMonth, dow, mid, DateTimeRule::WALL_TIME);
193 year, month, dom, dow, doy, mid);
194 weekInMonth = Grego::dayOfWeekInMonth(year, month, dom);
196 dtr = new DateTimeRule(month, weekInMonth, dow, mid, DateTimeRule::WALL_TIME);
224 year, month, dom, dow, doy, mid);
225 weekInMonth = Grego::dayOfWeekInMonth(year, month, dom);
226 dtr = new DateTimeRule(month, weekInMont
479 int32_t year, month, dom, dow, doy, mid; local
[all...]
H A Dbuddhcal.cpp79 int32_t BuddhistCalendar::handleComputeMonthStart(int32_t eyear, int32_t month, argument
83 return GregorianCalendar::handleComputeMonthStart(eyear, month, useMonth);
H A Dchnsecal.h31 * calendar is a lunisolar calendar: Each month starts on a new moon, and
33 * guarantee that month 11 always contains the winter solstice. In order
35 * months are numbered the same as the month they follow. The decision of
36 * which month is a leap month depends on the relative movements of the sun
164 virtual int32_t handleGetMonthLength(int32_t extendedYear, int32_t month) const;
165 virtual int32_t handleComputeMonthStart(int32_t eyear, int32_t month, UBool useMonth) const;
/external/icu/icu4c/source/samples/cal/
H A Dcal.c43 static void cal(int32_t month, int32_t year,
115 int32_t month = -1, year = -1; local
152 /* Get the month and year to display, if specified */
157 sscanf(argv[optInd], "%d", (int*)&month);
160 /* Make sure the month value is legal */
161 if(month < 0 || month > 12) {
162 printf("icucal: Bad value for month -- %d\n", (int)month);
169 --month;
226 cal(int32_t month, int32_t year, UBool useLongNames, UErrorCode *status) argument
[all...]
/external/chromium_org/chrome/android/java/src/org/chromium/chrome/browser/autofill/
H A DPersonalDataManager.java241 String obfuscatedNumber, String month, String year) {
242 return new CreditCard(guid, origin, name, number, obfuscatedNumber, month, year);
246 String obfuscatedNumber, String month, String year) {
252 mMonth = month;
310 public void setMonth(String month) { argument
311 mMonth = month;
240 create(String guid, String origin, String name, String number, String obfuscatedNumber, String month, String year) argument
245 CreditCard(String guid, String origin, String name, String number, String obfuscatedNumber, String month, String year) argument
/external/chromium_org/content/public/android/javatests/src/org/chromium/content/browser/input/
H A DInputDialogContainerTest.java359 int year, int month, int monthDay,
364 mExpectedMonth = month;
378 int year, int month, int monthDay,
383 assertEquals(mExpectedMonth, month);
397 int year, int month, int monthDay,
401 year, month, monthDay,
358 setShowDialogExpectation(int dialogType, int year, int month, int monthDay, int hourOfDay, int minute, int second, int millis, int week, double min, double max, double step) argument
377 showPickerDialog(final int dialogType, int year, int month, int monthDay, int hourOfDay, int minute, int second, int millis, int week, double min, double max, double step) argument
396 setFieldDateTimeValue(int dialogType, int year, int month, int monthDay, int hourOfDay, int minute, int second, int millis, int week) argument
/external/chromium_org/third_party/WebKit/Source/web/tests/
H A DLocaleWinTest.cpp75 DateComponents dateComponents(int year, int month, int day) argument
78 date.setMillisecondsSinceEpochForDate(msForDate(year, month, day));
82 double msForDate(int year, int month, int day) argument
84 return dateToDaysFrom1970(year, month, day) * msPerDay;
87 String formatDate(LCID lcid, int year, int month, int day) argument
90 return locale->formatDateTime(dateComponents(year, month, day));
/external/chromium_org/ui/android/java/src/org/chromium/ui/picker/
H A DDateDialogNormalizer.java60 int year, int month, int day, int hour, int minute, long minMillis, long maxMillis) {
63 calendar.set(year, month, day, hour, minute, 0);
59 normalize(DatePicker picker, OnDateChangedListener listener, int year, int month, int day, int hour, int minute, long minMillis, long maxMillis) argument
/external/chromium_org/v8/test/intl/date-format/
H A Dresolved-options.js30 // Default (year, month, day) formatter.
45 assertTrue(resolved.hasOwnProperty('month'));
46 assertEquals('numeric', resolved.month);
77 assertFalse(resolved.hasOwnProperty('month'));
85 'en-US', {weekday: 'short', era: 'short', year: 'numeric', month: 'short',
100 assertTrue(resolved.hasOwnProperty('month'));
/external/chromium_org/base/time/
H A Dtime_mac.cc171 date.month = exploded.month;
199 exploded->month = date.month;
/external/chromium_org/media/formats/webm/
H A Dwebm_info_parser.cc87 exploded_epoch.month = 1;
/external/chromium_org/net/cert/
H A Dx509_cert_types.cc65 exploded.month = ParseIntAndAdvance(&field, 2, &valid);

Completed in 3032 milliseconds

1234567891011>>