/external/chromium_org/third_party/WebKit/Source/web/tests/data/ |
date_time_chooser.html | 5 <input type="week" id="week">
|
/external/chromium_org/third_party/WebKit/Source/core/html/forms/ |
InputTypeNames.in | 25 week
|
/external/chromium_org/chrome/common/extensions/docs/examples/api/browsingData/basic/ |
popup.html | 16 <option value="week">the past week</option>
|
/frameworks/opt/datetimepicker/src/com/android/datetimepicker/ |
Utils.java | 85 * the Monday for that week. 87 * This assumes that the week containing the {@link Time#EPOCH_JULIAN_DAY} 88 * is considered week 0. It returns the Julian day for the Monday 89 * {@code week} weeks after the Monday of the week containing the epoch. 91 * @param week Number of weeks since the epoch 92 * @return The julian day for the Monday of the given week since the epoch 94 public static int getJulianMondayFromWeeksSinceEpoch(int week) { 95 return MONDAY_BEFORE_JULIAN_EPOCH + week * 7; 99 * Returns the week since {@link Time#EPOCH_JULIAN_DAY} (Jan 1, 1970 [all...] |
/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...] |
WeekPickerDialog.java | 17 * @param weekOfYear The initial week of the dialog. 31 * @param weekOfYear The initial week of the dialog.
|
/external/chromium_org/third_party/WebKit/ManualTests/ |
input-type-datetime-default-value.html | 3 <head><title>Default values for date/time input (type= date, datetime, datetime-local, month, time, week)</title></head> 16 <li>week <input type="week" size="32" value="" /> 25 <li>week <input type="week" size="32" value="foo" /> 34 <li>week <input type="week" size="32" value="" step="foo" /> 43 <li>week <input type="week" size="32" value="foo" step="foo" /> 52 <li>week <input type="week" size="32" value="" step="any" / [all...] |
/packages/apps/Calendar/src/com/android/calendar/month/ |
SimpleWeekView.java | 43 * This is a dynamic view for drawing a single week. It can be configured to 44 * display the week number, start the week on a given day, or show a reduced 58 * This sets the height of this week in pixels 62 * This specifies the position (or weeks since the epoch) of this week, 65 public static final String VIEW_PARAMS_WEEK = "week"; 72 * Which day the week should start on. {@link Time#SUNDAY} through 87 * If this month should display week numbers. false if 0, true otherwise. 126 // The month of the first day in this week 128 // The month of the last day in this week [all...] |
/external/chromium_org/third_party/icu/source/i18n/unicode/ |
dtrule.h | 24 * a rule specified by month, day of month, day of week and 39 DOW, /**< The Nth occurence of the day of week, 41 DOW_GEQ_DOM, /**< The first occurence of the day of week on or after the day of monnth, 43 DOW_LEQ_DOM /**< The last occurence of the day of week on or before the day of month, 73 * Constructs a <code>DateTimeRule</code> by the day of week and its oridinal 78 * @param weekInMonth The ordinal number of the day of week. Negative number 81 * @param dayOfWeek The day of week, for example, <code>Calendar::SUNDAY</code>. 91 * Constructs a <code>DateTimeRule</code> by the first/last day of week 98 * @param dayOfWeek The day of week, for example, <code>Calendar::SUNDAY</code>. 185 * Gets the rule day of week. When the date rule typ [all...] |
/external/icu4c/i18n/unicode/ |
dtrule.h | 24 * a rule specified by month, day of month, day of week and 39 DOW, /**< The Nth occurence of the day of week, 41 DOW_GEQ_DOM, /**< The first occurence of the day of week on or after the day of monnth, 43 DOW_LEQ_DOM /**< The last occurence of the day of week on or before the day of month, 73 * Constructs a <code>DateTimeRule</code> by the day of week and its oridinal 78 * @param weekInMonth The ordinal number of the day of week. Negative number 81 * @param dayOfWeek The day of week, for example, <code>Calendar::SUNDAY</code>. 91 * Constructs a <code>DateTimeRule</code> by the first/last day of week 98 * @param dayOfWeek The day of week, for example, <code>Calendar::SUNDAY</code>. 185 * Gets the rule day of week. When the date rule typ [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...] |
/packages/apps/Calendar/res/values-w960dp-h527dp/ |
dimens.xml | 31 <!-- minimum size of hours column in day/week view --> 33 <!-- margins size of hours column in day/week view --> 36 <!-- size of day header in day and week views -->
|
/frameworks/base/core/java/android/widget/ |
CalendarView.java | 84 * Default value whether to show week number. 94 * The number of day in a week. 99 * The number of milliseconds in a week. 183 * The visible height of a week view. 188 * The visible height of a week view. 198 * Flag whether to show the week number. 203 * The number of day per week to be shown. 208 * The friction of the week list while flinging. 213 * Scale for adjusting velocity of the week list while flinging. 233 * The header with week day names [all...] |
/external/chromium_org/third_party/WebKit/Source/web/resources/ |
calendarPicker.js | 58 weekLabel: "Week", 143 * @return {?Day|Week|Month} 149 var week = Week.parse(dateString); 150 if (week) 151 return week; 364 * @param {!number} week 366 function Week(year, week) { 376 this.week = week [all...] |
/external/chromium_org/content/test/data/accessibility/ |
input-types.html | 26 <label>Week: <input type="week"></label>
|
/frameworks/base/packages/SystemUI/res/values-bg/ |
donottranslate.xml | 20 <!-- For formatting day of week and date in DateView. Day of week precedes date by default,
|
/frameworks/base/packages/SystemUI/res/values-hu/ |
donottranslate.xml | 20 <!-- For formatting day of week and date in DateView. Day of week precedes date by default,
|
/frameworks/base/packages/SystemUI/res/values-ja/ |
donottranslate.xml | 20 <!-- For formatting day of week and date in DateView. Day of week precedes date by default,
|
/frameworks/base/packages/SystemUI/res/values-ko/ |
donottranslate.xml | 20 <!-- For formatting day of week and date in DateView. Day of week precedes date by default,
|
/frameworks/base/packages/SystemUI/res/values-lt/ |
donottranslate.xml | 20 <!-- For formatting day of week and date in DateView. Day of week precedes date by default,
|
/frameworks/base/packages/SystemUI/res/values-tr/ |
donottranslate.xml | 20 <!-- For formatting day of week and date in DateView. Day of week precedes date by default,
|
/frameworks/base/packages/SystemUI/res/values-zh-rCN/ |
donottranslate.xml | 20 <!-- For formatting day of week and date in DateView. Day of week precedes date by default,
|
/frameworks/base/packages/SystemUI/res/values-zh-rTW/ |
donottranslate.xml | 20 <!-- For formatting day of week and date in DateView. Day of week precedes date by default,
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.4.3/sysroot/usr/include/linux/ |
quotaio_v1.h | 12 #define MAX_IQ_TIME 604800 /* (7*24*60*60) 1 week */ 13 #define MAX_DQ_TIME 604800 /* (7*24*60*60) 1 week */
|
/prebuilts/gcc/linux-x86/host/i686-linux-glibc2.7-4.6/sysroot/usr/include/linux/ |
quotaio_v1.h | 12 #define MAX_IQ_TIME 604800 /* (7*24*60*60) 1 week */ 13 #define MAX_DQ_TIME 604800 /* (7*24*60*60) 1 week */
|