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

1 2 3 4

  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
DateTimeChooserAndroid.java 31 int year, int month, int day, int hour, int minute, int second, int week) {
34 year, month, day, hour, minute, second, week);
45 int hour, int minute, int second, int week, double min, double max) {
47 hour, minute, second, week, min, max);
55 int hour, int minute, int second, int week, double min, double max) {
59 chooser.showDialog(dialogType, year, month, day, hour, minute, second, week, min, max);
74 int year, int month, int day, int hour, int minute, int second, int week);
WeekPicker.java 30 private Calendar createDateFromWeek(int year, int week) {
37 date.set(Calendar.WEEK_OF_YEAR, week);
54 int week = date.get(Calendar.WEEK_OF_YEAR); local
55 if (month == 0 && week > 51) {
57 } else if (month == 11 && week == 1) {
68 protected void setCurrentDate(int year, int week) {
69 Calendar date = createDateFromWeek(year, week);
80 // Create a date in the middle of the year, where the week year matches the year.
94 * @return The selected week.
InputDialogContainer.java 35 int year, int month, int day, int hour, int minute, int second, int week);
111 int hour, int minute, int second, int week, double min, double max) {
146 if (week == 0) {
149 week = WeekPicker.getWeekForDate(cal);
152 year, week, minTime, maxTime);
271 int minute, int week, String dateFormat) {
277 year, month, monthDay, hourOfDay, minute, 0 /* second */, week);
  /external/chromium_org/content/browser/android/
date_time_chooser_android.cc 27 int year, int month, int day, int hour, int minute, int second, int week);
41 int year, int month, int day, int hour, int minute, int second, int week) {
49 value.week = week;
81 int year, int month, int day, int hour, int minute, int second, int week) {
83 dialog_type, year, month, day, hour, minute, second, week);
93 int hour, int minute, int second, int week, double min, double max) {
102 type, year, month, day, hour, minute, second, week, min, max));
date_time_chooser_android.h 28 int hour, int minute, int second, int week,
34 jint hour, jint minute, jint second, jint week);
  /external/chromium_org/chrome/browser/history/
visit_filter.cc 126 // Decay score by half each week.
191 base::Time week,
197 if (week.is_null())
198 week = base::Time::Now();
199 week.LocalExplode(&exploded_time);
203 base::Time day_base = week.LocalMidnight();
225 base::Time week,
229 if (week.is_null())
230 week = base::Time::Now();
236 week.LocalExplode(&exploded_time)
    [all...]
visit_filter.h 18 // out visits by time of the day, day of the week, workdays, holidays, duration
63 // the week.
64 // |day| - day of the week: 0 - sunday, 1 - monday, etc.
120 // |day| could be outside of the range: -4 (3 - 7) means Wednesday last week,
123 base::Time week,
129 base::Time week,
  /external/chromium_org/third_party/WebKit/Source/core/html/
InputTypeNames.h 53 const AtomicString& week();
TextInputType.cpp 53 else if (equalIgnoringCase(type, InputTypeNames::week()))
InputTypeNames.cpp 164 const AtomicString& week() function in namespace:WebCore::InputTypeNames
166 DEFINE_STATIC_LOCAL(AtomicString, name, ("week", AtomicString::ConstructFromLiteral));
WeekInputType.cpp 66 return InputTypeNames::week();
71 return DateComponents::Week;
  /external/chromium_org/third_party/WebKit/Source/core/Resources/pagepopups/
calendarPicker.css 60 .week-number-cell,
71 .week-number-cell {
89 .week-number-cell.highlighted,
94 .week-number-cell.highlighted.disabled,
100 .week-number-cell.selected,
105 .week-number-cell.disabled,
120 .week-number-label,
121 .week-day-label {
129 .week-number-label {
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/renderer/
date_time_formatter.h 31 int week_year, int week);
renderer_date_time_picker.cc 38 message.week = parser.GetWeek();
70 value.hour, value.minute, value.second, value.year, value.week);
  /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/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 35 // To look for history items visited in the last week,
36 // subtract a week of microseconds from the current time.
46 'startTime': oneWeekAgo // that was accessed less than one week ago.
  /external/chromium_org/chrome/common/extensions/docs/examples/api/history/showHistory/
typedUrls.js 39 // To look for history items visited in the last week,
40 // subtract a week of microseconds from the current time.
50 'startTime': oneWeekAgo // that was accessed less than one week ago.
  /external/chromium_org/third_party/WebKit/Source/core/platform/
DateComponents.h 43 // * Week type: year-week
68 Week,
78 int week() const { return m_week; } function in class:WebCore::DateComponents
108 // Sets year and week.
131 // For Week type. Updates m_year and m_week.
160 static inline double maximumWeek() { return 8639999568000000.0; } // 275760-09-08, the Monday of the week including 275760-09-13.
172 // 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
393 int week; local
394 if (!toInt(src, index, 2, week) || week < minimumWeekNumber || week > maxWeekNumberInYear())
396 if (m_year == maximumYear() && week > maximumWeekInMaximumYear)
398 m_week = week;
400 m_type = Week;
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9/
date-format-tofte.js 118 // A full textual representation of the day of the week
191 // there's a chance it's "week 1" of next year.
211 // return that week.
216 // week 1, is the week that has the first thursday in it.
227 // Numeric representation of the day of the week
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-0.9.1/
date-format-tofte.js 118 // A full textual representation of the day of the week
191 // there's a chance it's "week 1" of next year.
211 // return that week.
216 // week 1, is the week that has the first thursday in it.
227 // Numeric representation of the day of the week
  /external/chromium_org/third_party/WebKit/PerformanceTests/SunSpider/tests/sunspider-1.0/
date-format-tofte.js 118 // A full textual representation of the day of the week
191 // there's a chance it's "week 1" of next year.
211 // return that week.
216 // week 1, is the week that has the first thursday in it.
227 // Numeric representation of the day of the week
  /external/chromium_org/chrome/common/extensions/docs/examples/api/browsingData/basic/
popup.js 55 * @param {string} timeframe One of 'hour', 'day', 'week', '4weeks', or
65 'week': 7 * 24 * 60 * 60 * 1000,
  /external/chromium_org/third_party/WebKit/Source/web/
ExternalDateTimeChooser.cpp 97 if (source == InputTypeNames::week())

Completed in 1250 milliseconds

1 2 3 4