HomeSort by relevance Sort by last modified time
    Searched refs:month (Results 251 - 275 of 931) sorted by null

<<11121314151617181920>>

  /external/v8/test/intl/overrides/
date.js 38 [], {year: 'numeric', month: 'numeric', day: 'numeric',
51 locale, {year: 'numeric', month: 'numeric', day: 'numeric',
60 var options = {year: 'numeric', month: 'long', day: 'numeric',
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeekView.java 17 package com.android.calendar.month;
82 * Which month is currently in focus, as defined by {@link Time#month}
87 * If this month should display week numbers. false if 0, true otherwise.
120 // Quick lookup for checking which days are in the focus month
122 // Quick lookup for checking which days are in an odd month (to set a different background)
126 // The month of the first day in this week
128 // The month of the last day in this week
204 * will only update if a new value is included, except for focus month,
205 * which will always default to no focus month if no value is passed in. Se
    [all...]
MonthListView.java 17 package com.android.calendar.month;
38 // behavior. Between MIN_VELOCITY_FOR_FLING and MULTIPLE_MONTH_VELOCITY_THRESHOLD, do one month
39 // fling. Above MULTIPLE_MONTH_VELOCITY_THRESHOLD, do multiple month flings according to the
40 // fling strength. When doing multiple month fling, the velocity is reduced by this threshold
41 // to prevent moving from one month fling to 4 months and above flings.
131 // Do a "snap to start of month" fling
139 // Below the threshold, fling one month. Above the threshold , fling
147 // detected the list moved back one month.
162 // Get the day of the first day of the next/previous month
166 mTempTime.month += monthsToJump
    [all...]
  /external/chromium-trace/catapult/third_party/webapp2/tests/
handler_test.py 52 month='07', name='test', foo='bar')
89 def get(self, month, day, slug=None):
90 self.response.out.write('%s:%s:%s' % (month, day, slug))
136 webapp2.Route('/<year:\d{4}>/<month:\d{1,2}>/<name>', None, name='route-test'),
423 self.assertEqual(func('route-test', year='2010', month='0', name='test'), '/2010/0/test')
424 self.assertEqual(func('route-test', year='2010', month='07', name='test'), '/2010/07/test')
425 self.assertEqual(func('route-test', year='2010', month='07', name='test', foo='bar'), '/2010/07/test?foo=bar')
426 self.assertEqual(func('route-test', _fragment='my-anchor', year='2010', month='07', name='test', foo='bar'), '/2010/07/test?foo=bar#my-anchor')
427 self.assertEqual(func('route-test', _fragment='my-anchor', year='2010', month='07', name='test'), '/2010/07/test#my-anchor')
428 self.assertEqual(func('route-test', _full=True, year='2010', month='07', name='test'), 'http://localhost:80/2010/07/test'
    [all...]
  /external/autotest/site_utils/
collect_host_stats.py 112 end_time = datetime(year=now.year, month=now.month, day=now.day,
  /external/bison/build-aux/
update-b4-copyright 29 my ($sec, $min, $hour, $mday, $month, $year) = localtime (time ());
  /external/chromium-trace/catapult/third_party/pipeline/pipeline/ui/
jquery.timeago.js 40 month: "about a month",
78 days < 60 && substitute($l.month, 1) ||
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
IntlTestDateFormatSymbols.java 38 final String[] month; local
43 month=symbol.getMonths();
44 int cnt = month.length;
50 logln(month[i]);
64 String[] month =symbol.getMonths(context[i],width[j]); local
65 int cnt = month.length;
69 for (int k = 0; k < month.length; k++) {
70 logln(month[k]);
  /external/icu/icu4c/source/i18n/
olsontz.h 101 * cessation lists consist of the month, dowim, dow, time, and time
167 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month,
174 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month,
vzone.h 180 * @param month The reference date's month (0-based; 0 is January)
181 * @param day The reference date's day-in-month (1-based)
188 vzone_getOffset(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day,
202 * @param month The reference date's month (0-based; 0 is January)
203 * @param day The reference date's day-in-month (1-based)
206 * @param monthLength The length of the given month in days.
211 vzone_getOffset2(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day,
  /external/icu/icu4c/source/i18n/unicode/
rbtz.h 140 * @param month The reference date's month (0-based; 0 is January)
141 * @param day The reference date's day-in-month (1-based)
148 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
161 * @param month The reference date's month (0-based; 0 is January)
162 * @param day The reference date's day-in-month (1-based)
165 * @param monthLength The length of the given month in days.
170 virtual int32_t getOffset(uint8_t era, int32_t year, int32_t month, int32_t day,
  /external/icu/icu4j/eclipse-build/plugins.template/com.ibm.icu.base/src/com/ibm/icu/util/
TimeZone.java 220 // * @param month the month in the given date.
221 // * Month is 0-based. e.g., 0 for January.
222 // * @param day the day-in-month of the given date.
259 public int getOffset(int era, int year, int month, int day,
261 return timeZone.getOffset(era, year, month, day, dayOfWeek, milliseconds);
    [all...]