| /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...] |
| /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...] |
| /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...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Demo/classes/ |
| Dates.py | 16 # Date objects support one visible method, date.weekday(). This returns
116 def _num2day(n): # return weekday name of day with ordinal n
146 self.weekday(),
169 def weekday(self):
member in class:Date 201 if a.weekday() != 'Tuesday':
202 raise DateTestError, 'weekday() failure'
|
| /external/python/cpython2/Demo/classes/ |
| Dates.py | 16 # Date objects support one visible method, date.weekday(). This returns 116 def _num2day(n): # return weekday name of day with ordinal n 146 self.weekday(), 169 def weekday(self): member in class:Date 201 if a.weekday() != 'Tuesday': 202 raise DateTestError, 'weekday() failure'
|
| /external/toolchain-utils/ |
| buildbot_test_toolchains.py | 65 weekday, 79 if not weekday: 82 self._weekday = weekday 302 '--weekday', 304 dest='weekday', 331 options.weekday, options.patches, options.noschedv2)
|
| /external/robolectric-shadows/shadows/framework/src/main/java/org/robolectric/shadows/ |
| ShadowTime.java | 65 time.weekDay = other.weekDay; 135 time.weekDay = 0; 159 time.weekDay = 0; 273 time.weekDay = calendar.get(Calendar.DAY_OF_WEEK) - Calendar.SUNDAY;
|
| /libcore/ojluni/src/main/java/java/text/ |
| DateFormatSymbols.java | 171 * Weekday strings. For example: "Sunday", "Monday", etc. An array 180 * Short weekday strings. For example: "Sun", "Mon", etc. An array 318 * Tiny weekday strings: "M", "F", "W" etc. 346 * Standalone weekday strings; "Monday", "Tuesday", "Wednesday" etc. 353 * Short standalone weekday strings; "Mon", "Tue", "Wed" etc. 360 * Tiny standalone weekday strings; "M", "T", "W" etc. 524 * Gets weekday strings. For example: "Sunday", "Monday", etc. 525 * @return the weekday strings. Use <code>Calendar.SUNDAY</code>, 533 * Sets weekday strings. For example: "Sunday", "Monday", etc. 534 * @param newWeekdays the new weekday strings. The array shoul [all...] |
| /frameworks/base/core/java/android/text/format/ |
| Time.java | 114 public int weekDay; 214 * to April 1. It also fills in weekDay, yearDay, isDst and gmtoff. 312 this.weekDay = 0; 389 * <code>allDay</code> is set to false. The fields <code>weekDay</code>, 486 weekDay = 0; 674 this.weekDay = 0; 792 this.weekDay = that.weekDay; 799 * Sets the fields. Sets weekDay, yearDay and gmtoff to 0, and isDst to -1. 810 this.weekDay = 0 [all...] |
| /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/text/ |
| DateFormatSymbols.java | 373 * Returns weekday strings. For example: "Sunday", "Monday", etc. 374 * @return the weekday strings. Use <code>Calendar.SUNDAY</code>, 383 * Returns weekday strings. For example: "Sunday", "Monday", etc. 384 * @return the weekday strings. Use <code>Calendar.SUNDAY</code>, 407 * Sets weekday strings. For example: "Sunday", "Monday", etc. 408 * @param newWeekdays The new weekday strings. 432 * Sets weekday strings. For example: "Sunday", "Monday", etc. 433 * @param newWeekdays the new weekday strings. The array should 443 * Returns short weekday strings. For example: "Sun", "Mon", etc. 444 * @return the short weekday strings. Use <code>Calendar.SUNDAY</code> [all...] |
| /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/test/ |
| test_strftime.py | 90 ('%a', calendar.day_abbr[now[6]], 'abbreviated weekday name'),
91 ('%A', calendar.day_name[now[6]], 'full weekday name'),
105 ('%w', '0?%d' % ((1+now[6]) % 7), 'weekday as a number (Sun 1st)'),
|
| /external/icu/icu4j/main/tests/localespi/src/com/ibm/icu/dev/test/localespi/ |
| DateFormatSymbolsTest.java | 172 // Weekday names should be identical for these three. 180 errln("FAIL: Different weekday name - index=" + i 186 errln("FAIL: Different weekday name - index=" + i
|
| /external/python/cpython2/Lib/test/ |
| test_strftime.py | 90 ('%a', calendar.day_abbr[now[6]], 'abbreviated weekday name'), 91 ('%A', calendar.day_name[now[6]], 'full weekday name'), 105 ('%w', '0?%d' % ((1+now[6]) % 7), 'weekday as a number (Sun 1st)'),
|
| /packages/apps/DeskClock/src/com/android/alarmclock/ |
| DigitalAppWidgetCityViewsFactory.java | 190 // Compute if the city week day matches the weekday of the current timezone. 198 final String weekday = cityCal.getDisplayName(DAY_OF_WEEK, Calendar.SHORT, locale); 199 final String slashDay = mContext.getString(R.string.world_day_of_week_label, weekday);
|
| /prebuilts/gdb/darwin-x86/lib/python2.7/test/ |
| test_strftime.py | 90 ('%a', calendar.day_abbr[now[6]], 'abbreviated weekday name'), 91 ('%A', calendar.day_name[now[6]], 'full weekday name'), 105 ('%w', '0?%d' % ((1+now[6]) % 7), 'weekday as a number (Sun 1st)'),
|
| /prebuilts/gdb/linux-x86/lib/python2.7/test/ |
| test_strftime.py | 90 ('%a', calendar.day_abbr[now[6]], 'abbreviated weekday name'), 91 ('%A', calendar.day_name[now[6]], 'full weekday name'), 105 ('%w', '0?%d' % ((1+now[6]) % 7), 'weekday as a number (Sun 1st)'),
|
| /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/test/ |
| test_strftime.py | 90 ('%a', calendar.day_abbr[now[6]], 'abbreviated weekday name'), 91 ('%A', calendar.day_name[now[6]], 'full weekday name'), 105 ('%w', '0?%d' % ((1+now[6]) % 7), 'weekday as a number (Sun 1st)'),
|
| /prebuilts/python/linux-x86/2.7.5/lib/python2.7/test/ |
| test_strftime.py | 90 ('%a', calendar.day_abbr[now[6]], 'abbreviated weekday name'), 91 ('%A', calendar.day_name[now[6]], 'full weekday name'), 105 ('%w', '0?%d' % ((1+now[6]) % 7), 'weekday as a number (Sun 1st)'),
|
| /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);
|
| /packages/apps/DeskClock/src/com/android/deskclock/data/ |
| Weekdays.java | 169 throw new IllegalArgumentException(calendarDay + " is not a valid weekday"); 180 * @return {@code true} iff at least one weekday is enabled in the repeat schedule 189 * @return the number of days between the given {@code time} and the previous enabled weekday 212 * @return the number of days between the given {@code time} and the next enabled weekday which
|
| /prebuilts/jdk/jdk8/darwin-x86/jre/lib/ext/ |
| cldrdata.jar | |
| /prebuilts/jdk/jdk8/linux-x86/jre/lib/ext/ |
| cldrdata.jar | |
| /external/python/cpython2/Doc/includes/ |
| tzinfo-examples.py | 74 dt.weekday(), 0, 0) 85 days_to_go = 6 - dt.weekday()
|
| /external/python/cpython3/Doc/includes/ |
| tzinfo-examples.py | 51 dt.weekday(), 0, 0) 62 days_to_go = 6 - dt.weekday()
|
| /packages/apps/DeskClock/src/com/android/deskclock/alarms/ |
| AlarmTimeClickHandler.java | 139 final int weekday = DataModel.getDataModel().getWeekdayOrder().getCalendarDays().get(index); local 140 alarm.daysOfWeek = alarm.daysOfWeek.setBit(weekday, checked);
|