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

1 2

  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
WeekPicker.java 32 * Creates a date object from the |year| and |week|.
34 public static Calendar createDateFromWeek(int year, int week) {
41 date.set(Calendar.WEEK_OF_YEAR, week);
65 int week = date.get(Calendar.WEEK_OF_YEAR); local
66 if (month == 0 && week > 51) {
68 } else if (month == 11 && week == 1) {
79 protected void setCurrentDate(int year, int week) {
80 Calendar date = createDateFromWeek(year, week);
91 // Create a date in the middle of the year, where the week year matches the year.
105 * @return The selected week
    [all...]
InputDialogContainer.java 132 int week = WeekPicker.getWeekForDate(cal); local
133 showPickerDialog(dialogType, year, 0, 0, 0, 0, 0, 0, week, min, max, step);
212 int hourOfDay, int minute, int second, int millis, int week,
248 year, week, min, max);
355 int week) {
366 WeekPicker.createDateFromWeek(year, week).getTimeInMillis());
  /external/chromium_org/third_party/WebKit/Source/platform/
DateComponents.h 44 // * Week type: year-week
69 Week,
80 int week() const { return m_week; } function in class:WebCore::DateComponents
110 // Sets year and week.
133 // For Week type. Updates m_year and m_week.
162 static inline double maximumWeek() { return 8639999568000000.0; } // 275760-09-08, the Monday of the week including 275760-09-13.
174 // Returns the maximum week number in this DateComponents's year.
DateComponents.cpp 44 // HTML5 specification defines minimum week of year is one.
47 // HTML5 specification defines maximum week of year is 53.
52 static const int maximumWeekInMaximumYear = 37; // The week of 275760-09-13
387 int week; local
388 if (!toInt(src, index, 2, week) || week < minimumWeekNumber || week > maxWeekNumberInYear())
390 if (m_year == maximumYear() && week > maximumWeekInMaximumYear)
392 m_week = week;
394 m_type = Week;
    [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/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...]
  /external/chromium_org/chrome/browser/resources/chromeos/chromevox/common/
focus_util.js 44 'week' : false,
dom_util.js 57 'week' : 'input_type_week'
    [all...]
  /libcore/luni/src/main/java/java/util/
GregorianCalendar.java 65 * 53. Week 1 for a year is the earliest seven day period starting on
69 * {@code getFirstDayOfWeek()}, and the day of the week of January 1.
70 * Weeks between week 1 of one year and week 1 of the following year are
77 * reflecting ISO 8601 and many national standards), then week 1 of 1998 starts
79 * {@code getFirstDayOfWeek()} is {@code SUNDAY}, then week 1 of
81 * days of 1998 then are part of week 53 of 1997.
85 * 1 to 4 or 5. Week 1 of a month (the days with <code>WEEK_OF_MONTH =
89 * {@code getFirstDayOfWeek()}. Unlike week 1 of a year, week 1 of
560 int week = (fields[DAY_OF_YEAR] - 1 + daysFromStart) \/ 7 local
1174 int week = (fields[day] - ((fields[day] - 1) \/ 7 * 7) - 1 + mod) \/ 7 + 1; local
1198 int week = (fields[day] - ((fields[day] - 1) \/ 7 * 7) - 1 + mod) \/ 7 + 1; local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java 149 // Bits used in EAS recurrences for days of the week
253 // MSFT day of week starts w/ Sunday = 0; RRule starts w/ Sunday = 1
256 setWord(bytes, offset + MSFT_SYSTEMTIME_DAY, rrule.week < 0 ? 5 : rrule.week);
270 // MSFT day of week starts w/ Sunday = 0; TimeZone starts w/ Sunday = 1
300 // MSFT day of week starts w/ Sunday = 0; TimeZone starts w/ Sunday = 1
408 int week; field in class:CalendarUtilities.RRule
424 * Create an RRULE based on month, day of week, and week #
426 * @param _dayOfWeek the day of the week (1 = SU, 7 = SA
463 int week = calendar.get(Calendar.DAY_OF_WEEK_IN_MONTH); local
    [all...]
  /external/chromium_org/third_party/icu/source/tools/tzcode/
zic.c 1977 register int week; local
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
zic.c 1977 register int week; local
    [all...]
  /external/chromium_org/third_party/accessibility-audit/
axs_testing.js 493 submit:"input_type_submit", tel:"input_type_tel", text:"input_type_text", url:"input_type_url", week:"input_type_week"};
    [all...]
  /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 
  /external/robolectric/lib/main/
android.jar 
  /prebuilts/sdk/11/
android.jar 
  /prebuilts/sdk/12/
android.jar 
  /prebuilts/sdk/14/
android.jar 
  /prebuilts/sdk/15/
android.jar 
  /prebuilts/sdk/16/
android.jar 
  /prebuilts/sdk/17/
android.jar 
  /prebuilts/sdk/18/
android.jar 

Completed in 959 milliseconds

1 2