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

1 2

  /external/ltp/testcases/open_posix_testsuite/conformance/definitions/time_h/
2-1-buildonly.c 16 int week, year, dst; local
24 week = t.tm_wday;
  /libcore/ojluni/src/test/java/time/tck/java/time/temporal/
TCKWeekFields.java 96 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
97 assertEquals(week.getFirstDayOfWeek(), firstDayOfWeek, "Incorrect firstDayOfWeek");
98 assertEquals(week.getMinimalDaysInFirstWeek(), minDays, "Incorrect MinimalDaysInFirstWeek");
99 assertSame(WeekFields.of(firstDayOfWeek, minDays), week); local
105 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
106 assertEquals(week.dayOfWeek().isDateBased(), true);
107 assertEquals(week.dayOfWeek().isTimeBased(), false);
109 assertEquals(week.weekOfMonth().isDateBased(), true);
110 assertEquals(week.weekOfMonth().isTimeBased(), false);
112 assertEquals(week.weekOfYear().isDateBased(), true)
153 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
165 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
198 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
311 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
347 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
381 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
402 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
425 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
448 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
470 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
496 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
516 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
538 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
559 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
581 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
606 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
627 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
650 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
672 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
694 WeekFields week = WeekFields.of(firstDayOfWeek, minDays); local
789 assertEquals(date.get(wowbyField), week); local
    [all...]
TCKIsoFields.java 299 @DataProvider(name="week")
320 @Test(dataProvider="week")
321 public void test_WOWBY(LocalDate date, DayOfWeek dow, int week, int wby) {
323 assertEquals(IsoFields.WEEK_OF_WEEK_BASED_YEAR.getFrom(date), week); local
324 assertEquals(date.get(IsoFields.WEEK_OF_WEEK_BASED_YEAR), week); local
335 @Test(dataProvider="week")
336 public void test_WBY(LocalDate date, DayOfWeek dow, int week, int wby) {
350 @Test(dataProvider="week")
351 public void test_parse_weeks_STRICT(LocalDate date, DayOfWeek dow, int week, int wby) {
357 LocalDate parsed = LocalDate.parse(wby + "-" + week + "-" + dow.getValue(), f)
448 int week = 1; local
465 assertEquals(IsoFields.WEEK_OF_WEEK_BASED_YEAR.getFrom(date), week, "Failed on " + date + " " + date.getDayOfWeek()); local
466 assertEquals(date.get(IsoFields.WEEK_OF_WEEK_BASED_YEAR), week, "Failed on " + date + " " + date.getDayOfWeek()); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Lib/
calendar.py 4 default, these calendars have Monday as the first day of the week, and
6 set the first day of the week (0=Monday, 6=Sunday)."""
145 Return a iterator for one week of weekday numbers starting with the
158 # Go back to the beginning of the week
197 Each row represents a week; week entries are datetime.date values.
205 Each row represents a week; week entries are
215 Each row represents a week; days outside this month are zero.
224 Each month contains between 4 and 6 weeks and each week contains 1-7
582 week = c.formatweek variable
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
calendar.py 4 default, these calendars have Monday as the first day of the week, and
6 set the first day of the week (0=Monday, 6=Sunday)."""
145 Return a iterator for one week of weekday numbers starting with the
158 # Go back to the beginning of the week
193 Each row represents a week; week entries are datetime.date values.
201 Each row represents a week; week entries are
211 Each row represents a week; days outside this month are zero.
220 Each month contains between 4 and 6 weeks and each week contains 1-7
577 week = c.formatweek variable
    [all...]
  /libcore/ojluni/src/main/java/java/time/temporal/
IsoFields.java 88 * including quarter-of-year and week-based-year.
104 * <li>{@link #QUARTER_OF_YEAR QUARTER_OF_YEAR} - the week within the week-based-year
108 * <h3>Week based years</h3>
111 * alternate way of expressing the date, based on the concept of week-based-year.
116 * day-of-week from Monday (1) to Sunday (7)
117 * <li>{@link #WEEK_OF_WEEK_BASED_YEAR} - the week within the week-based-year
118 * <li>{@link #WEEK_BASED_YEAR WEEK_BASED_YEAR} - the week-based-year
120 * The week-based-year itself is defined relative to the standard ISO proleptic year
542 int week = getWeek(date); local
612 int week = ((doy0 - firstMonDoy0) \/ 7) + 1; local
    [all...]
WeekFields.java 95 * Localized definitions of the day-of-week, week-of-month and week-of-year fields.
97 * A standard week is seven days long, but cultures have different definitions for some
98 * other aspects of a week. This class represents the definition of the week, for the
106 * The computations for day-of-week, week-of-month, and week-of-year are based
110 * {@linkplain ChronoField#DAY_OF_WEEK ISO day-of-week} which are based on th
811 int week = computeWeek(offset, doy); local
841 int week = computeWeek(offset, doy); local
1132 int week = computeWeek(offset, doy); local
    [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/temporal/
TestIsoWeekFields.java 140 int week = 1; local
144 assertEquals(weekField.getFrom(date), week); local
148 week++;
152 if (week > wbyLen(wby)) {
153 week = 1;
168 int week = 1; local
174 assertEquals(adjusted.get(weekField), week); local
179 week++;
183 if (week > wbyLen(wby)) {
184 week = 1
196 int week = 1; local
225 int week = 1; local
253 int week = 1; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarViewAdapter.java 49 // Day view: show day of the week + full date underneath
50 // Week view: show the month + year
52 // Agenda view: show day of the week + full date underneath
66 // The current selected event's time, used to calculate the date and day of the week
188 case ViewType.WEEK:
226 case ViewType.WEEK:
304 // Used when the user selects a new day/week/month to watch
310 // Builds a string with the day of the week and the word yesterday/today/tomorrow
344 // Week: month day-day or month day - month day
385 // Calculate the start of the week, taking into account the "first day of the week
420 int week = Utils.getWeekNumberFromTime(mMilliTime, mContext); local
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/
calendar.py 4 default, these calendars have Monday as the first day of the week, and
6 set the first day of the week (0=Monday, 6=Sunday)."""
145 Return a iterator for one week of weekday numbers starting with the
158 # Go back to the beginning of the week
197 Each row represents a week; week entries are datetime.date values.
205 Each row represents a week; week entries are
215 Each row represents a week; days outside this month are zero.
224 Each month contains between 4 and 6 weeks and each week contains 1-
582 week = c.formatweek variable
    [all...]
  /prebuilts/gdb/linux-x86/lib/python2.7/
calendar.py 4 default, these calendars have Monday as the first day of the week, and
6 set the first day of the week (0=Monday, 6=Sunday)."""
145 Return a iterator for one week of weekday numbers starting with the
158 # Go back to the beginning of the week
197 Each row represents a week; week entries are datetime.date values.
205 Each row represents a week; week entries are
215 Each row represents a week; days outside this month are zero.
224 Each month contains between 4 and 6 weeks and each week contains 1-
582 week = c.formatweek variable
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
calendar.py 4 default, these calendars have Monday as the first day of the week, and
6 set the first day of the week (0=Monday, 6=Sunday)."""
145 Return a iterator for one week of weekday numbers starting with the
158 # Go back to the beginning of the week
197 Each row represents a week; week entries are datetime.date values.
205 Each row represents a week; week entries are
215 Each row represents a week; days outside this month are zero.
224 Each month contains between 4 and 6 weeks and each week contains 1-
582 week = c.formatweek variable
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
calendar.py 4 default, these calendars have Monday as the first day of the week, and
6 set the first day of the week (0=Monday, 6=Sunday)."""
145 Return a iterator for one week of weekday numbers starting with the
158 # Go back to the beginning of the week
197 Each row represents a week; week entries are datetime.date values.
205 Each row represents a week; week entries are
215 Each row represents a week; days outside this month are zero.
224 Each month contains between 4 and 6 weeks and each week contains 1-
582 week = c.formatweek variable
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
datetimemodule.c 333 /* Day of week, where Monday==0, ..., Sunday==6. 1/1/1 was a Monday. */
340 /* Ordinal of the Monday starting week 1 of the ISO year. Week 1 is the
341 * first calendar week containing a Thursday.
1940 PyObject *week = NULL; local
2587 int week; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
datetimemodule.c 333 /* Day of week, where Monday==0, ..., Sunday==6. 1/1/1 was a Monday. */
340 /* Ordinal of the Monday starting week 1 of the ISO year. Week 1 is the
341 * first calendar week containing a Thursday.
1940 PyObject *week = NULL; local
2587 int week; local
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
zic.c 2042 register int week; local
    [all...]
  /libcore/ojluni/src/test/java/time/tck/java/time/format/
TCKDateTimeFormatters.java 1111 private int week = 1; local
    [all...]
  /external/guice/extensions/persist/lib/
hsqldb.jar 
  /prebuilts/devtools/tools/lib/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/jfree/jfreechart/1.0.9/
jfreechart-1.0.9.jar 
  /prebuilts/tools/common/m2/repository/net/sourceforge/saxon/saxon/9.1.0.8/
saxon-9.1.0.8.jar 
  /external/robolectric/v1/lib/main/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 1348 milliseconds

1 2