HomeSort by relevance Sort by last modified time
    Searched refs:day (Results 276 - 300 of 988) sorted by null

<<11121314151617181920>>

  /external/icu/android_icu4j/src/main/java/android/icu/impl/
JavaTimeZone.java 113 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) {
114 return javatz.getOffset(era, year, month, day, dayOfWeek, milliseconds);
  /external/icu/icu4c/source/i18n/unicode/
timezone.h 471 * @param day The reference date's day-in-month (1-based)
472 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
473 * @param millis The reference date's milliseconds in day, local standard time
478 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
493 * @param day the day-in-month of the given date.
494 * @param dayOfWeek the day-of-week of the given date.
495 * @param milliseconds the millis in day in <em>standard</em> local time.
501 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
    [all...]
vtzone.h 171 * BYDAY rule with day of week (such as BYDAY=1SUN). This method produce
207 * @param day The reference date's day-in-month (1-based)
208 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
209 * @param millis The reference date's milliseconds in day, local standard time
214 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
228 * @param day The reference date's day-in-month (1-based)
229 * @param dayOfWeek The reference date's day-of-week (1-based; 1 is Sunday)
230 * @param millis The reference date's milliseconds in day, local standard tim
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
JavaTimeZone.java 111 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) {
112 return javatz.getOffset(era, year, month, day, dayOfWeek, milliseconds);
  /external/icu/icu4j/main/classes/localespi/src/com/ibm/icu/impl/icuadapter/
TimeZoneJDK.java 101 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) {
102 return fJdkTz.getOffset(era, year, month, day, dayOfWeek, milliseconds);
  /frameworks/base/core/java/android/app/
DatePickerDialog.java 48 private static final String DAY = "day";
85 * @param dayOfMonth the initially selected day of month (1-31, depending
104 * @param dayOfMonth the initially selected day of month (1-31, depending
197 * @param dayOfMonth the day of month (1-31, depending on month)
208 state.putInt(DAY, mDatePicker.getDayOfMonth());
217 final int day = savedInstanceState.getInt(DAY); local
218 mDatePicker.init(year, month, day, this);
240 * @param dayOfMonth th selected day of the month (1-31, depending o
    [all...]
  /frameworks/base/core/tests/coretests/src/android/widget/
DatePickerFocusTest.java 189 // tab back into the day-selection pager
196 // Move up out again, then down back into the day-selection pager.
231 private void assertDateIs(int month, final int day, final int year) throws Throwable {
236 assertEquals(day, mDatePicker.getDayOfMonth());
  /frameworks/data-binding/integration-tests/TestApp/app/src/androidTestApi7/java/android/databinding/testapp/
TwoWayBindingAdapterTest.java 392 assertEquals(21, mBindingObject.day.get());
410 assertEquals(17, mBindingObject.day.get());
422 assertEquals(21, mBindingObject.day.get());
440 assertEquals(17, mBindingObject.day.get());
452 assertEquals(21, mBindingObject.day.get());
470 assertEquals(17, mBindingObject.day.get());
512 assertEquals(21, mBindingObject.day.get());
530 assertEquals(17, mBindingObject.day.get());
  /libcore/ojluni/src/test/java/time/test/java/time/format/
TestReducedPrinter.java 269 public void test_printAdjacent(String pattern, String text, int year, int month, int day) {
274 LocalDate ld = LocalDate.of(year, month, day);
  /packages/apps/ExactCalculator/src/com/android/calculator2/
HistoryAdapter.java 165 final int day = mCalendar.get(Calendar.DAY_OF_YEAR); local
169 return year != prevYear || day != prevDay;
  /test/vts/runners/host/
logger.py 49 An iterable of date and time elements in the order of month, day, hour,
53 month, day = date.split('-')
56 return (month, day, h, m, s, ms)
  /tools/loganalysis/src/com/android/loganalysis/parser/
BatteryStatsSummaryInfoParser.java 76 final int day = Integer.parseInt(resetTimeMatcher.group(3)); local
81 mResetTime.set(year, (month - 1), day, hour, minute, second);
  /tools/test/connectivity/acts/framework/acts/
logger.py 44 An iterable of date and time elements in the order of month, day, hour,
48 year, month, day = date.split('-')
51 return year, month, day, h, m, s, ms
  /external/icu/icu4c/source/samples/cal/
cal.c 135 /* use long day names */
253 /* Determine the first day of the week */
269 /* Determine the first day of the week */
283 * (e.g. it will be one to fetch day names, since Sunday is
284 * day 1 *not* day 0.)
287 * the output array. This is used when fetching day names
332 /* Get the day names for the specified locale, in either long or short
413 /* Print the day names */
428 int32_t width, pad, i, day; local
    [all...]
  /external/wpa_supplicant_8/src/utils/
os_unix.c 130 int os_mktime(int year, int month, int day, int hour, int min, int sec,
137 if (year < 1970 || month < 1 || month > 12 || day < 1 || day > 31 ||
145 tm.tm_mday = day;
181 tm->day = tm2->tm_mday;
  /test/vti/dashboard/src/test/java/com/android/vts/job/
VtsProfilingStatsJobServletTest.java 171 /** Test that canonical time is correctly derived from a timestamp in the middle of the day. */
176 int day = 28; local
179 LocalDateTime now = LocalDateTime.of(year, month.getValue(), day, hour, minute);
187 assertEquals(day, canonical.getDayOfMonth());
197 int day = 28; local
200 LocalDateTime now = LocalDateTime.of(year, month.getValue(), day, hour, minute);
  /external/icu/icu4c/source/test/intltest/
caltest.cpp 696 * Test the handling of the day of the week, checking for correctness and
725 dow > max) errln(UnicodeString("FAIL: Day of week ") + (int32_t)dow + " out of range");
726 if (dow != UCAL_SUNDAY) errln("FAIL: Day of week should be SUNDAY[%d] not %d", UCAL_SUNDAY, dow);
799 verify765("1997 third day of June = ", c, 1997, UCAL_JUNE, 3);
850 * results in the first WOY/DOW day of the year satisfying the
892 CalendarTest::verify765(const UnicodeString& msg, Calendar* c, int32_t year, int32_t month, int32_t day)
901 d == day) {
907 errln("FAIL: " + msg + dateToString(c->getTime(status), str) + "; expected " + (int32_t)year + "/" + (int32_t)(month + 1) + "/" + (int32_t)day +
1566 int32_t day = cal.get(UCAL_DATE, status); local
2284 int32_t day = 15; local
2463 int32_t day; member in class:CalFields
2799 int32_t day = cal->get(UCAL_DAY_OF_MONTH, status); local
3268 int32_t day=0, month=0, year=0, initDay = 27, initMonth = IslamicCalendar::RAJAB, initYear = 1434; local
3302 int32_t day = tstCal->get(UCAL_DAY_OF_MONTH, status); local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
CopticTest.java 108 // Julian Day Era Year Month Day WkDay Hour Min Sec
161 int day = cal.get(Calendar.DAY_OF_MONTH); local
164 d == day)) {
171 " d: " + day);
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
CopticTest.java 105 // Julian Day Era Year Month Day WkDay Hour Min Sec
158 int day = cal.get(Calendar.DAY_OF_MONTH); local
161 d == day)) {
168 " d: " + day);
  /external/python/cpython3/Lib/http/
cookiejar.py 106 dt.year, dt.month, dt.day, dt.hour, dt.minute, dt.second)
124 DAYS[dt.weekday()], dt.day, MONTHS[dt.month-1],
145 def _str2time(day, mon, yr, hr, min, sec, tz):
170 day = int(day)
187 t = _timegm((yr, mon, day, hr, min, sec, tz))
208 (\d\d?) # day
268 day, mon, yr, hr, min, sec, tz = [None]*7
273 day, mon, yr, hr, min, sec, tz = m.groups()
277 return _str2time(day, mon, yr, hr, min, sec, tz
    [all...]
  /frameworks/base/core/java/android/widget/
DayPickerView.java 174 public void onDaySelected(DayPickerPagerAdapter adapter, Calendar day) {
176 mOnDaySelectedListener.onDaySelected(DayPickerView.this, day);
234 // header, horizontally center within the day cell.
270 * @param timeInMillis the target day in milliseconds
280 * @param timeInMillis the target day in milliseconds
288 * Moves to the month containing the specified day, optionally setting the
289 * day as selected.
291 * @param timeInMillis the target day in milliseconds
293 * @param setSelected whether to set the specified day as selected
297 // Clamp the target day in milliseconds to the min or max if outside the range
    [all...]
  /frameworks/base/tests/HwAccelerationTest/src/com/android/test/hwui/
DatePicker.java 41 * A view for selecting a month / year / day based on a calendar like layout.
81 * @param dayOfMonth The day of the month that was set.
104 mDayPicker = findViewById(R.id.day);
143 // Adjust max day of the month
154 // Adjust max day for leap years if needed
297 private SavedState(Parcelable superState, int year, int month, int day, boolean hasYear,
302 mDay = day;
395 * @param dayOfMonth The initial day of the month.
407 * @param dayOfMonth The initial day of the month.
  /toolchain/binutils/binutils-2.27/binutils/
nlmheader.y 192 version_hdr->day = nlmlex_get_number ($3);
199 if (version_hdr->day < 1 || version_hdr->day > 31)
200 nlmheader_warn (_("illegal day"), -1);
  /bionic/libc/kernel/uapi/linux/
telephony.h 57 char day[3]; member in struct:__anon1188
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
CreditCardExpirationDatePickerView.java 150 // Remove day.
151 datePicker.findViewById(getResources().getIdentifier("day", "id", "android"))
157 public void onDateSet(DatePicker view, int year, int month, int day) {

Completed in 747 milliseconds

<<11121314151617181920>>