| /external/icu/icu4j/main/classes/core/src/com/ibm/icu/text/ |
| DateTimePatternGenerator.java | [all...] |
| /external/python/cpython2/Lib/test/ |
| test_strptime.py | 47 # Make sure that full and abbreviated weekday names are correct in 50 "Testing of full weekday name failed") 52 "Testing of abbreviated weekday name failed") 121 "did not find abbreviated weekday in pattern string '%s'" % 124 "did not find full weekday in pattern string '%s'" % 152 "re object couldn't find the abbreviated weekday month in " 282 # Test weekday directives
|
| /external/v8/src/builtins/ |
| builtins-date.cc | 156 int year, month, day, weekday, hour, min, sec, ms; local 157 date_cache->BreakDownTime(local_time_ms, &year, &month, &day, &weekday, &hour, 165 SNPrintF(str, "%s %s %02d %4d", kShortWeekDays[weekday], 175 kShortWeekDays[weekday], kShortMonths[month], day, year, hour, 773 int year, month, day, weekday, hour, min, sec, ms; local 774 isolate->date_cache()->BreakDownTime(time_ms, &year, &month, &day, &weekday, 822 int year, month, day, weekday, hour, min, sec, ms; local [all...] |
| /frameworks/base/core/java/android/text/style/ |
| TtsSpan.java | 312 * Argument used to specify the weekday of a date. The value should be 319 public static final String ARG_WEEKDAY = "android.arg.weekday"; [all...] |
| /bionic/libc/upstream-openbsd/lib/libc/time/ |
| wcsftime.c | 45 const wchar_t * weekday[DAYSPERWEEK]; member in struct:lc_time_T 156 UNKNOWN : Locale->weekday[t->tm_wday], 315 ** "ISO 8601: Weekday as a decimal number
|
| /prebuilts/go/darwin-x86/src/time/ |
| time.go | 302 // A Weekday specifies a day of the week (Sunday = 0, ...). 303 type Weekday int 306 Sunday Weekday = iota 326 func (d Weekday) String() string { return days[d] } 503 // Weekday returns the day of the week specified by t. 504 func (t Time) Weekday() Weekday { 508 // absWeekday is like Weekday but operates on an absolute time. 509 func absWeekday(abs uint64) Weekday { 512 return Weekday(int(sec) / secondsPerDay [all...] |
| zoneinfo_windows.go | 120 // d.DayOfWeek is appropriate weekday (Sunday=0 to Saturday=6) 125 i := int(d.DayOfWeek) - int(t.Weekday())
|
| /prebuilts/go/linux-x86/src/time/ |
| time.go | 302 // A Weekday specifies a day of the week (Sunday = 0, ...). 303 type Weekday int 306 Sunday Weekday = iota 326 func (d Weekday) String() string { return days[d] } 503 // Weekday returns the day of the week specified by t. 504 func (t Time) Weekday() Weekday { 508 // absWeekday is like Weekday but operates on an absolute time. 509 func absWeekday(abs uint64) Weekday { 512 return Weekday(int(sec) / secondsPerDay [all...] |
| zoneinfo_windows.go | 120 // d.DayOfWeek is appropriate weekday (Sunday=0 to Saturday=6) 125 i := int(d.DayOfWeek) - int(t.Weekday())
|
| /frameworks/opt/calendar/src/com/android/calendarcommon2/ |
| EventRecurrence.java | 126 /** maps a two-character weekday string to an integer constant */ 417 * Determines whether this rule specifies a simple monthly rule by weekday, such as 550 * ( ";" "WKST" "=" weekday ) / 829 /** parses [int]weekday, putting the pieces into parallel array entries */ 835 /* number is included; parse it out and advance to weekday */ 841 /* just the weekday string */ [all...] |
| /external/robolectric-shadows/utils/src/main/java/org/robolectric/util/ |
| Strftime.java | 75 // %a Abbreviated weekday name according to locale. 84 // %A Full weekday name according to locale.
|
| /external/v8/src/ |
| objects-debug.cc | 505 CHECK(weekday()->IsUndefined(isolate) || weekday()->IsSmi() || 506 weekday()->IsNaN()); 533 if (weekday()->IsSmi()) { 534 int weekday = Smi::cast(this->weekday())->value(); local 535 CHECK(0 <= weekday && weekday <= 6); [all...] |
| heap-symbols.h | 185 V(weekday_string, "weekday") \
|
| /packages/apps/DeskClock/src/com/android/deskclock/uidata/ |
| UiDataModel.java | 168 * @return single-character version of weekday name; e.g.: 'S', 'M', 'T', 'W', 'T', 'F', 'S' 186 * @return full weekday name; e.g.: 'Sunday', 'Monday', 'Tuesday', etc.
|
| /external/python/cpython3/Doc/library/ |
| datetime.rst | 537 d.weekday(), yday, -1))``, where ``yday = d.toordinal() - date(d.year, 1, 549 .. method:: date.weekday() 552 For example, ``date(2002, 12, 4).weekday() == 2``, a Wednesday. See also 560 :meth:`weekday`, :meth:`isocalendar`. 565 Return a 3-tuple, (ISO year, ISO week number, ISO weekday). 654 0 # weekday (0 = Monday) [all...] |
| /external/nist-sip/java/gov/nist/javax/sip/parser/ |
| HeaderParser.java | 46 * Parse the weekday field
|
| /external/python/cpython3/Lib/test/ |
| test_enum.py | 538 class WeekDay(IntEnum): 547 self.assertEqual(['a', 'b', 'c'][WeekDay.MONDAY], 'c') 548 self.assertEqual([i for i in range(WeekDay.TUESDAY)], [0, 1, 2]) 550 lst = list(WeekDay) 551 self.assertEqual(len(lst), len(WeekDay)) 552 self.assertEqual(len(WeekDay), 7) 555 for i, weekday in enumerate(target, 1): 556 e = WeekDay(i) 559 self.assertEqual(e.name, weekday) 560 self.assertIn(e, WeekDay) [all...] |
| /external/v8/src/compiler/ |
| type-cache.h | 136 // The JSDate::weekday property always contains a tagged number in the range
|
| /frameworks/layoutlib/bridge/src/libcore/icu/ |
| ICU_Delegate.java | 202 // the constants from java.util.Calendar.<weekday>
|
| /libcore/luni/src/test/java/libcore/libcore/icu/ |
| LocaleDataTest.java | 96 // Russian stand-alone weekday names have no initial capital since CLDR 28/ICU 56.
|
| /libcore/ojluni/src/test/java/time/test/java/time/temporal/ |
| TestChronoField.java | 89 fieldMap.put(ChronoField.DAY_OF_WEEK, "weekday");
|
| /external/python/cpython2/Doc/library/ |
| datetime.rst | 487 d.weekday(), yday, -1))``, where ``yday = d.toordinal() - date(d.year, 1, 499 .. method:: date.weekday() 502 For example, ``date(2002, 12, 4).weekday() == 2``, a Wednesday. See also 510 :meth:`weekday`, :meth:`isocalendar`. 515 Return a 3-tuple, (ISO year, ISO week number, ISO weekday). 602 0 # weekday (0 = Monday) [all...] |
| /frameworks/base/core/java/android/text/format/ |
| DateUtils.java | 617 * If FORMAT_SHOW_WEEKDAY is set, then the weekday is shown. 687 * If FORMAT_ABBREV_WEEKDAY is set, then the weekday (if shown) is 695 * If FORMAT_ABBREV_ALL is set, then the weekday and the month (if shown) [all...] |
| /external/curl/lib/ |
| parsedate.c | 87 static const char * const weekday[] = variable 208 what = &weekday[0];
|
| /external/icu/icu4c/source/test/intltest/ |
| tsdtfmsy.cpp | 158 errln("ERROR: English format short weekday names don't match prefixes of format abbreviated names"); 161 errln("ERROR: English standalone short weekday names don't match prefixes of format abbreviated names");
|