HomeSort by relevance Sort by last modified time
    Searched refs:weekday (Results 1 - 25 of 51) sorted by null

1 2 3

  /prebuilts/gdb/darwin-x86/lib/python2.7/
_strptime.py 35 f_weekday -- full weekday names (7-item list)
36 a_weekday -- abbreviated weekday names (7-item list)
278 first_weekday = datetime_date(year, 1, 1).weekday()
338 # weekday and julian defaulted to -1 so as to signal need to calculate
340 weekday = julian = -1
395 weekday = locale_time.f_weekday.index(found_dict['A'].lower())
397 weekday = locale_time.a_weekday.index(found_dict['a'].lower())
399 weekday = int(found_dict['w'])
400 if weekday == 0:
401 weekday =
    [all...]
calendar.py 13 "firstweekday", "isleap", "leapdays", "weekday", "monthrange",
29 def __init__(self, weekday):
30 self.weekday = weekday
32 return "bad weekday number %r; must be 0 (Monday) to 6 (Sunday)" % self.weekday
110 def weekday(year, month, day): function
111 """Return weekday (0-6 ~ Mon-Sun) for year (1970-...), month (1-12),
113 return datetime.date(year, month, day).weekday()
117 """Return weekday (0-6 ~ Mon-Sun) and number of days (28-31) fo
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
_strptime.py 35 f_weekday -- full weekday names (7-item list)
36 a_weekday -- abbreviated weekday names (7-item list)
278 first_weekday = datetime_date(year, 1, 1).weekday()
338 # weekday and julian defaulted to -1 so as to signal need to calculate
340 weekday = julian = -1
395 weekday = locale_time.f_weekday.index(found_dict['A'].lower())
397 weekday = locale_time.a_weekday.index(found_dict['a'].lower())
399 weekday = int(found_dict['w'])
400 if weekday == 0:
401 weekday =
    [all...]
calendar.py 13 "firstweekday", "isleap", "leapdays", "weekday", "monthrange",
29 def __init__(self, weekday):
30 self.weekday = weekday
32 return "bad weekday number %r; must be 0 (Monday) to 6 (Sunday)" % self.weekday
110 def weekday(year, month, day): function
111 """Return weekday (0-6 ~ Mon-Sun) for year (1970-...), month (1-12),
113 return datetime.date(year, month, day).weekday()
117 """Return weekday (0-6 ~ Mon-Sun) and number of days (28-31) fo
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_strptime.py 35 f_weekday -- full weekday names (7-item list)
36 a_weekday -- abbreviated weekday names (7-item list)
278 first_weekday = datetime_date(year, 1, 1).weekday()
338 # weekday and julian defaulted to -1 so as to signal need to calculate
340 weekday = julian = -1
395 weekday = locale_time.f_weekday.index(found_dict['A'].lower())
397 weekday = locale_time.a_weekday.index(found_dict['a'].lower())
399 weekday = int(found_dict['w'])
400 if weekday == 0:
401 weekday =
    [all...]
calendar.py 13 "firstweekday", "isleap", "leapdays", "weekday", "monthrange",
29 def __init__(self, weekday):
30 self.weekday = weekday
32 return "bad weekday number %r; must be 0 (Monday) to 6 (Sunday)" % self.weekday
110 def weekday(year, month, day): function
111 """Return weekday (0-6 ~ Mon-Sun) for year (1970-...), month (1-12),
113 return datetime.date(year, month, day).weekday()
117 """Return weekday (0-6 ~ Mon-Sun) and number of days (28-31) fo
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_strptime.py 35 f_weekday -- full weekday names (7-item list)
36 a_weekday -- abbreviated weekday names (7-item list)
278 first_weekday = datetime_date(year, 1, 1).weekday()
338 # weekday and julian defaulted to -1 so as to signal need to calculate
340 weekday = julian = -1
395 weekday = locale_time.f_weekday.index(found_dict['A'].lower())
397 weekday = locale_time.a_weekday.index(found_dict['a'].lower())
399 weekday = int(found_dict['w'])
400 if weekday == 0:
401 weekday =
    [all...]
calendar.py 13 "firstweekday", "isleap", "leapdays", "weekday", "monthrange",
29 def __init__(self, weekday):
30 self.weekday = weekday
32 return "bad weekday number %r; must be 0 (Monday) to 6 (Sunday)" % self.weekday
110 def weekday(year, month, day): function
111 """Return weekday (0-6 ~ Mon-Sun) for year (1970-...), month (1-12),
113 return datetime.date(year, month, day).weekday()
117 """Return weekday (0-6 ~ Mon-Sun) and number of days (28-31) fo
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventRecurrenceFormatter.java 97 int day = EventRecurrence.timeDay2Day(recurrence.startDate.weekDay);
106 int weekday = recurrence.startDate.weekDay; local
108 cacheMonthRepeatStrings(r, weekday);
113 sb.append(mMonthRepeatByDayOfWeekStrs[weekday][dayNumber]);
127 private static void cacheMonthRepeatStrings(Resources r, int weekday) {
141 if (mMonthRepeatByDayOfWeekStrs[weekday] == null) {
142 mMonthRepeatByDayOfWeekStrs[weekday] =
143 r.getStringArray(mMonthRepeatByDayOfWeekIds[weekday]);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
SimpleDateRule.java 47 * Construct a rule for a weekday within a month, e.g. the first Monday.
185 int weekday = c.get(Calendar.DAY_OF_WEEK); local
187 //System.out.println(" weekday = " + weekday);
194 delta = (dayOfWeek - weekday + 7) % 7;
199 delta = -((dayOfWeek + weekday + 7) % 7);
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
SimpleDateRule.java 47 * Construct a rule for a weekday within a month, e.g. the first Monday.
190 int weekday = c.get(Calendar.DAY_OF_WEEK); local
192 //System.out.println(" weekday = " + weekday);
199 delta = (dayOfWeek - weekday + 7) % 7;
204 delta = -((dayOfWeek + weekday + 7) % 7);
  /external/v8/test/mjsunit/regress/
regress-builtinbust-7.js 14 weekday: "long",
  /external/v8/test/intl/date-format/
resolved-options.js 53 assertFalse(resolved.hasOwnProperty('weekday'));
82 assertFalse(resolved.hasOwnProperty('weekday'));
86 'en-US', {weekday: 'short', era: 'short', year: 'numeric', month: 'short',
107 assertTrue(resolved.hasOwnProperty('weekday'));
108 assertEquals('short', resolved.weekday);
property-override.js 47 'en-US', {weekday: 'short', era: 'short', year: 'numeric', month: 'short',
59 'second', 'timeZone', 'timeZoneName', 'weekday', 'year'
  /external/chromium-trace/catapult/dashboard/dashboard/
bisect_stats.py 123 monday = today - datetime.timedelta(days=today.weekday())
  /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...]
  /external/curl/lib/
parsedate.c 89 static const char * const weekday[] = variable
210 what = &weekday[0];
  /packages/apps/DeskClock/src/com/android/alarmclock/
DigitalWidgetViewsFactory.java 191 // Compute if the city week day matches the weekday of the current timezone.
199 final String weekday = cityCal.getDisplayName(DAY_OF_WEEK, Calendar.SHORT, locale);
200 final String slashDay = mContext.getString(R.string.world_day_of_week_label, weekday);
  /external/v8/src/
date.h 70 // Given the number of days since the epoch, computes the weekday.
72 int Weekday(int days) {
178 int week_day = Weekday(DaysFromYearMonth(year, 0));
195 int* weekday, int* hour, int* min, int* sec, int* ms);
date.cc 179 int* weekday, int* hour, int* min, int* sec,
184 *weekday = Weekday(days);
objects-debug.cc 466 CHECK(weekday()->IsUndefined() || weekday()->IsSmi() || weekday()->IsNaN());
494 if (weekday()->IsSmi()) {
495 int weekday = Smi::cast(this->weekday())->value(); local
496 CHECK(0 <= weekday && weekday <= 6);
    [all...]
  /bionic/libc/tzcode/
strftime.c 49 const char * weekday[DAYSPERWEEK]; member in struct:lc_time_T
185 "?" : Locale->weekday[t->tm_wday],
362 ** "ISO 8601: Weekday as a decimal number
  /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
  /packages/apps/DeskClock/src/com/android/deskclock/
ClockFragment.java 393 // Compute if the city week day matches the weekday of the current timezone.
403 final String weekday = cityCal.getDisplayName(DAY_OF_WEEK, Calendar.SHORT, locale); local
404 dayOfWeek.setText(mContext.getString(R.string.world_day_of_week_label, weekday));
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
__init__.py 177 getbaseclasses(weekday)
372 'wkdy' : weekday,

Completed in 452 milliseconds

1 2 3