HomeSort by relevance Sort by last modified time
    Searched full:week (Results 51 - 75 of 808) sorted by null

1 23 4 5 6 7 8 91011>>

  /external/chromium_org/content/public/android/java/src/org/chromium/content/browser/input/
TwoFieldDatePicker.java 50 * @param positionInYear The month or week in year.
117 * @param positionInYear The initial month <strong>starting from zero</strong> or week in year.
142 * @param positionInYear The month or week in year.
187 * @return The selected month or week.
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);
354 int week) {
365 WeekPicker.createDateFromWeek(year, week).getTimeInMillis());
  /external/icu4c/samples/cal/
cal.c 86 /* Number of days in a week */
249 /* Determine the first day of the week */
265 /* Determine the first day of the week */
284 * in locales where the week doesn't start on Sunday.
476 /* The day of the week for the first day of the month is based on
477 1-based days of the week, which were also reordered when placed
479 first day of the week for the locale, which is also 1-based. */
485 /* Indent the correct number of spaces for the first week */
513 /* If we're at day 0 (first day of the week), insert a newline */
625 /* The day of the week for the first day of the month is based o
    [all...]
  /external/llvm/utils/unittest/googletest/
README.LLVM 34 see http://lists.cs.uiuc.edu/pipermail/llvm-commits/Week-of-Mon-20100621/102898.html
  /frameworks/base/core/tests/coretests/res/values/
arrays.xml 32 <item>1 week</item>
  /frameworks/base/packages/SystemUI/res/values-sw720dp/
donottranslate.xml 20 <!-- For formatting day of week and date in DateView. %1$s is DOW, %2$s is date.
  /external/chromium_org/third_party/icu/source/i18n/
gregocal.cpp 17 * week-based date determination. Removed quetionable
519 fprintf(stderr, "%s:%d: [WOY/WOM] gregorian week shift of %d += %d\n",
522 jd += weekShift; // shift by weeks for week based fields.
731 // * Compute the day of week, relative to the first day of week, from
747 // * Compute the day of week, relative to the first day of week,
764 // // Compute DOY from day of week plus week of year
766 // // Find the day of the week for the first of this year. Thi
    [all...]
gregoimp.h 172 * month, day-of-month, and day-of-week.
177 * @param dow output parameter to receive day-of-week (1-based, 1==Sun)
185 * month, day-of-month, and day-of-week.
190 * @param dow output parameter to receive day-of-week (1-based, 1==Sun)
197 * month, day-of-month, and day-of-week, day of year and millis-in-day.
202 * @param dow output parameter to receive day-of-week (1-based, 1==Sun)
210 * Return the day of week on the 1970-epoch day
212 * @return the day of week
217 * Returns the ordinal number for the specified day of week within the month.
222 * @return The ordinal number for the specified day of week within the mont
    [all...]
  /external/icu4c/i18n/
gregocal.cpp 17 * week-based date determination. Removed quetionable
519 fprintf(stderr, "%s:%d: [WOY/WOM] gregorian week shift of %d += %d\n",
522 jd += weekShift; // shift by weeks for week based fields.
731 // * Compute the day of week, relative to the first day of week, from
747 // * Compute the day of week, relative to the first day of week,
764 // // Compute DOY from day of week plus week of year
766 // // Find the day of the week for the first of this year. Thi
    [all...]
gregoimp.h 172 * month, day-of-month, and day-of-week.
177 * @param dow output parameter to receive day-of-week (1-based, 1==Sun)
185 * month, day-of-month, and day-of-week.
190 * @param dow output parameter to receive day-of-week (1-based, 1==Sun)
197 * month, day-of-month, and day-of-week, day of year and millis-in-day.
202 * @param dow output parameter to receive day-of-week (1-based, 1==Sun)
210 * Return the day of week on the 1970-epoch day
212 * @return the day of week
217 * Returns the ordinal number for the specified day of week within the month.
222 * @return The ordinal number for the specified day of week within the mont
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/unicode/
ucal.h 107 * month, day-of-month <em>and</em> day-of-week in some cases.
214 * week number within the current year. The first week of the year, as
217 * the value of <code>UCAL_WEEK_OF_YEAR</code> for days before the first week of
227 * week number within the current month. The first week of the month, as
230 * the value of <code>WEEK_OF_MONTH</code> for days before the first week of
258 * of the week. This field takes values <code>SUNDAY</code>,
274 * ordinal number of the day of the week within the current month. Together
283 * <code>DAY_OF_WEEK_IN_MONTH 0</code> indicates the week befor
    [all...]
calendar.h 130 * month, day-of-month <em>and</em> day-of-week in some cases.
199 YEAR_WOY, // 'Y' Example: 1..big number - Year of Week of Year
200 DOW_LOCAL, // 'e' Example: 1..7 - Day of Week / Localized
212 * Useful constant for days of week. Note: Calendar day-of-week is 1-based. Clients
213 * who create locale resources for the field of first-day-of-week should be aware of
214 * this. For instance, in US locale, first-day-of-week is set to 1, i.e., SUNDAY.
    [all...]
  /external/chromium_org/third_party/WebKit/Source/platform/
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
382 int week; local
383 if (!toInt(src, index, 2, week) || week < minimumWeekNumber || week > maxWeekNumberInYear())
385 if (m_year == maximumYear() && week > maximumWeekInMaximumYear)
387 m_week = week;
389 m_type = Week;
    [all...]
  /bionic/libc/tzcode/
strftime.c 441 case 'V': /* ISO 8601 week number */
445 ** From Arnold Robbins' strftime version 3.0: "the week number of the
446 ** year (the first Monday as the first day of week 1) as a decimal number
451 ** "Week 01 of a year is per definition the first week which has the
452 ** Thursday in this year, which is equivalent to the week which contains
453 ** the fourth day of January. In other words, the first week of a new year
454 ** is the week which has the majority of its days in the new year. Week 01
455 ** might also contain days from the previous year and the week before wee
    [all...]
  /external/icu4c/i18n/unicode/
calendar.h 152 * month, day-of-month <em>and</em> day-of-week in some cases.
234 YEAR_WOY, // 'Y' Example: 1..big number - Year of Week of Year
235 DOW_LOCAL, // 'e' Example: 1..7 - Day of Week / Localized
248 * Useful constant for days of week. Note: Calendar day-of-week is 1-based. Clients
249 * who create locale resources for the field of first-day-of-week should be aware of
250 * this. For instance, in US locale, first-day-of-week is set to 1, i.e., SUNDAY.
    [all...]
  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
SimpleMonthView.java 63 * This sets the height of this week in pixels
67 * This specifies the position (or weeks since the epoch) of this week,
72 * This specifies the position (or weeks since the epoch) of this week,
82 * Which day the week should start on. {@link Time#SUNDAY} through
97 * If this month should display week numbers. false if 0, true otherwise.
140 // The month of the first day in this week
142 // The month of the last day in this week
158 // Which day of the week to start on [0-6]
162 // The number of days + a spot for week number if it is displayed
315 * Sets all the parameters for displaying this week. The only require
    [all...]
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
_strptime.py 147 # If %W is used, then Sunday, 2005-01-03 will fall on week 0 since
275 """Calculate the Julian day based on the year, week of the year, and day of
276 the week, with week_start_day representing whether the week of the year
277 assumes the week starts on Sunday or Monday (6 or 0)."""
279 # If we are dealing with the %U directive (week starts on Sunday), it's
281 # week.
285 # Need to watch out for a week 0 (when the first day of the year is not
347 # worthless without day of the week
409 # U starts week on Sunday
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
_strptime.py 147 # If %W is used, then Sunday, 2005-01-03 will fall on week 0 since
275 """Calculate the Julian day based on the year, week of the year, and day of
276 the week, with week_start_day representing whether the week of the year
277 assumes the week starts on Sunday or Monday (6 or 0)."""
279 # If we are dealing with the %U directive (week starts on Sunday), it's
281 # week.
285 # Need to watch out for a week 0 (when the first day of the year is not
347 # worthless without day of the week
409 # U starts week on Sunday
    [all...]
  /external/chromium_org/third_party/WebKit/PerformanceTests/Dromaeo/resources/dromaeo/web/tests/
sunspider-date-format-tofte.html 122 // A full textual representation of the day of the week
195 // there's a chance it's "week 1" of next year.
215 // return that week.
220 // week 1, is the week that has the first thursday in it.
231 // Numeric representation of the day of the week
  /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
  /packages/apps/Calendar/src/com/android/calendar/recurrencepicker/
RecurrencePickerDialog.java 146 * BYDAY: Days of the week to be repeated. Sun = 0, Mon = 1, etc
152 * month or Same nth day of week.
166 * Day of the week to repeat. Used when monthlyRepeat ==
172 * Nth day of the week to repeat. Used when monthlyRepeat ==
331 /** Hold toggle buttons in the order per user's first day of week preference */
356 // Or if -1 when it is the last monthly day of the week.
375 // Weekly: For "repeat by day of week", the day of week to repeat is in
379 * Monthly: For "repeat by nth day of week" the day of week to repeat i
    [all...]
  /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,
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
BordeauxAggregatorManager.java 92 Log.e(TAG,"Error getting day of week values");
125 Log.e(TAG,"Error setting fake day of week:" + day_of_week);

Completed in 1006 milliseconds

1 23 4 5 6 7 8 91011>>