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

1 2

  /external/webkit/Source/WebCore/html/
WeekInputType.cpp 54 return InputTypeNames::week();
DateComponents.h 43 // * Week type: year-week
68 int week() const { return m_week; } function in class:WebCore::DateComponents
97 // Sets year and week.
120 // For Week type. Updates m_year and m_week.
149 static inline double maximumWeek() { return 8639999568000000.0; } // 275760-09-08, the Monday of the week including 275760-09-13.
152 // Returns the maximum week number in this DateComponents's year.
194 Week,
DateComponents.cpp 52 static const int maximumWeekInMaximumYear = 37; // The week of 275760-09-13
396 int week; local
397 if (!toInt(src, length, index, 2, week) || week < 1 || week > maxWeekNumberInYear())
399 if (m_year == maximumYear && week > maximumWeekInMaximumYear)
401 m_week = week;
403 m_type = Week;
607 // Offset from January 1st to Monday of the ISO 8601's first week.
631 // The day belongs to the last week of the previous year
    [all...]
InputType.h 280 const AtomicString& week();
InputType.cpp 102 map->add(InputTypeNames::week(), WeekInputType::create);
793 const AtomicString& week() function in namespace:WebCore::InputTypeNames
795 DEFINE_STATIC_LOCAL(AtomicString, name, ("week"));
  /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/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/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
  /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
550 int week = (fields[DAY_OF_YEAR] - 1 + daysFromStart) \/ 7 local
1140 int week = (fields[day] - ((fields[day] - 1) \/ 7 * 7) - 1 + mod) \/ 7 + 1; local
1164 int week = (fields[day] - ((fields[day] - 1) \/ 7 * 7) - 1 + mod) \/ 7 + 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...]
Utils.java 296 * Save default agenda/day/week/month view for next time
306 if (mAllowWeekForDetailView && viewId == CalendarController.ViewType.WEEK) {
441 * Returns the week since {@link Time#EPOCH_JULIAN_DAY} (Jan 1, 1970)
442 * adjusted for first day of week.
444 * This takes a julian day and the week start day and calculates which
445 * week since {@link Time#EPOCH_JULIAN_DAY} that day occurs in, starting
446 * at 0. *Do not* use this to compute the ISO week number for the year.
448 * @param julianDay The julian day to calculate the week number for
449 * @param firstDayOfWeek Which week day is the first day of the week,
    [all...]
  /packages/apps/Exchange/exchange2/src/com/android/exchange/utility/
CalendarUtilities.java 151 // Bits used in EAS recurrences for days of the week
255 // MSFT day of week starts w/ Sunday = 0; RRule starts w/ Sunday = 1
258 setWord(bytes, offset + MSFT_SYSTEMTIME_DAY, rrule.week < 0 ? 5 : rrule.week);
272 // MSFT day of week starts w/ Sunday = 0; TimeZone starts w/ Sunday = 1
302 // MSFT day of week starts w/ Sunday = 0; TimeZone starts w/ Sunday = 1
410 int week; field in class:CalendarUtilities.RRule
426 * Create an RRULE based on month, day of week, and week #
428 * @param _dayOfWeek the day of the week (1 = SU, 7 = SA
465 int week = calendar.get(Calendar.DAY_OF_WEEK_IN_MONTH); local
    [all...]
  /frameworks/base/core/java/android/text/format/
Time.java 47 * The Julian day of the Monday in the week of the epoch, December 29, 1969
89 * Day of week [0-6]
642 * Computes the week number according to ISO 8601. The current Time
648 * The first week of the year (week 1) is defined by ISO 8601 as the
649 * first week with four or more of its days in the starting year.
650 * Or equivalently, the week containing January 4. Or equivalently,
651 * the week with the year's first Thursday in it.
655 * The week number can be calculated by counting Thursdays. Week
    [all...]
  /build/core/
cleanspec.mk 48 # that you made last week required touching a file and a change you
  /external/icu4c/tools/tzcode/
zic.c 1977 register int week; local
    [all...]
  /build/tools/droiddoc/templates-pdk/assets/
android-developer-docs.js 106 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
  /external/kernel-headers/original/linux/
fb.h 475 __u32 week; /* Week Manufactured */ member in struct:fb_monspecs
    [all...]
  /external/doclava/res/assets/templates/assets/
doclava-developer-docs.js 125 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
  /build/tools/droiddoc/templates-sdk/assets/js/
docs.js 754 date.setTime(date.getTime()+(10*365*24*60*60*1000)); // default expiration is one week
    [all...]
global-libraries-combined.js     [all...]
  /sdk/templates/docs/
jquery-1.8.0.min.js     [all...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/
code-load.js     [all...]
  /cts/suite/pts/hostTests/browser/browserlauncher/assets/octane/js/
jquery.js     [all...]
  /prebuilts/tools/common/jfreechart/
jfreechart-1.0.9.jar 
  /prebuilts/sdk/12/
android.jar 

Completed in 869 milliseconds

1 2