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...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
IntlTestDateFormatSymbols.java 34 final String[] month; local
39 month=symbol.getMonths();
40 int cnt = month.length;
46 logln(month[i]);
60 String[] month =symbol.getMonths(context[i],width[j]); local
61 int cnt = month.length;
65 for (int k = 0; k < month.length; k++) {
66 logln(month[k]);
  /frameworks/base/core/java/android/widget/
DatePickerCalendarDelegate.java 47 * A delegate for picking up a date (day / month / year).
129 // color from the header month text appearance. If it's set, we'll let
253 // If the newly selected month / year does not contain the
255 // to the last day of the selected month or year.
259 final int month = mCurrentDate.get(Calendar.MONTH);
260 final int daysInMonth = getDaysInMonth(month, year);
380 mCurrentDate.set(Calendar.MONTH, monthOfYear);
389 public void updateDate(int year, int month, int dayOfMonth) {
391 mCurrentDate.set(Calendar.MONTH, month)
537 final int month = mCurrentDate.get(Calendar.MONTH); local
    [all...]
  /hardware/bsp/intel/peripheral/libupm/src/ds1307/
ds1307.cxx 130 month = bcdToDec(buffer[5]);
163 // day of month
166 // month
167 buffer[5] = decToBcd(month);
  /tools/test/connectivity/acts/framework/acts/
logger.py 43 An iterable of date and time elements in the order of month, day, hour,
47 month, day = date.split('-')
50 return (month, day, h, m, s, ms)
  /development/ndk/platforms/android-3/include/linux/mmc/
card.h 25 unsigned char month; member in struct:mmc_cid
  /external/libxml2/include/libxml/
nanoftp.h 52 * @month: the month
64 const char *month, int day, int hour,
  /external/skia/platform_tools/android/tradefed/
upload_dm_results.py 53 # /dm-json-v1/year/month/day/hour/build-number/builder/dm.json
57 str(now.month).zfill(2),
  /external/wpa_supplicant_8/src/utils/
os_none.c 35 int os_mktime(int year, int month, int day, int hour, int min, int sec,
  /prebuilts/gdb/darwin-x86/lib/python2.7/
BaseHTTPServer.py 54 # | Mon: Month (calendar name)
468 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp)
471 day, self.monthname[month], year,
478 year, month, day, hh, mm, ss, x, y, z = time.localtime(now)
480 day, self.monthname[month], year, hh, mm, ss)
  /prebuilts/gdb/linux-x86/lib/python2.7/
BaseHTTPServer.py 54 # | Mon: Month (calendar name)
468 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp)
471 day, self.monthname[month], year,
478 year, month, day, hh, mm, ss, x, y, z = time.localtime(now)
480 day, self.monthname[month], year, hh, mm, ss)
  /prebuilts/ndk/current/platforms/android-12/arch-arm/usr/include/linux/mmc/
card.h 25 unsigned char month; member in struct:mmc_cid
  /prebuilts/ndk/current/platforms/android-12/arch-mips/usr/include/linux/mmc/
card.h 25 unsigned char month; member in struct:mmc_cid
  /prebuilts/ndk/current/platforms/android-12/arch-x86/usr/include/linux/mmc/
card.h 25 unsigned char month; member in struct:mmc_cid

Completed in 1621 milliseconds

<<11121314151617181920>>