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

1 2

  /external/v8/test/mjsunit/regress/
regress-builtinbust-7.js 14 weekday: "long",
  /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);
  /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
  /external/curl/lib/
parsedate.c 89 static const char * const weekday[] = variable
210 what = &weekday[0];
  /prebuilts/gdb/darwin-x86/lib/python2.7/
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/
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/
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/
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/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));
  /external/v8/src/
objects-debug.cc 461 CHECK(weekday()->IsUndefined(isolate) || weekday()->IsSmi() ||
462 weekday()->IsNaN());
489 if (weekday()->IsSmi()) {
490 int weekday = Smi::cast(this->weekday())->value(); local
491 CHECK(0 <= weekday && weekday <= 6);
    [all...]
builtins.cc 3433 int year, month, day, weekday, hour, min, sec, ms; local
4074 int year, month, day, weekday, hour, min, sec, ms; local
4126 int year, month, day, weekday, hour, min, sec, ms; local
    [all...]
objects.cc 18665 int weekday = date_cache->Weekday(days); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
AppleScript_Suite.py 1400 weekday = weekdays variable
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/plat-mac/lib-scriptpackages/StdSuites/
AppleScript_Suite.py 1400 weekday = weekdays variable
    [all...]
  /prebuilts/devtools/tools/lib/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/jfreechart/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/jfree/jcommon/1.0.12/
jcommon-1.0.12.jar 
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/sdk/21/
android.jar 
  /prebuilts/sdk/22/
android.jar 
  /prebuilts/sdk/23/
android.jar 
  /prebuilts/sdk/25/
android.jar 

Completed in 1095 milliseconds

1 2