HomeSort by relevance Sort by last modified time
    Searched refs:month (Results 326 - 350 of 603) sorted by null

<<11121314151617181920>>

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/
BaseHTTPServer.py 54 # | Mon: Month (calendar name)
471 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp)
474 day, self.monthname[month], year,
481 year, month, day, hh, mm, ss, x, y, z = time.localtime(now)
483 day, self.monthname[month], year, hh, mm, ss)
  /external/libchrome/base/time/
time.cc 333 return lhs.year == rhs.year && lhs.month == rhs.month &&
345 exploded.month,
411 return is_in_range(month, 1, 12) &&
  /external/libtextclassifier/annotator/
types.h 329 MONTH = 10,
369 // Month of the year starting with January = 1.
370 int month = 0; member in class:libtextclassifier3::DateParseData::Relation::AMPM::TimeUnit
371 // Day of the month starting with 1.
397 DateParseData(int field_set_mask, int year, int month, int day_of_month,
403 this->month = month;
  /external/libxml2/include/libxml/
nanoftp.h 52 * @month: the month
64 const char *month, int day, int hour,
  /external/python/cpython2/Lib/
BaseHTTPServer.py 54 # | Mon: Month (calendar name)
479 year, month, day, hh, mm, ss, wd, y, z = time.gmtime(timestamp)
482 day, self.monthname[month], year,
489 year, month, day, hh, mm, ss, x, y, z = time.localtime(now)
491 day, self.monthname[month], year, hh, mm, ss)
  /external/python/dateutil/dateutil/tz/
win.py 294 def picknthweekday(year, month, dayofweek, hour, minute, whichweek):
296 first = datetime.datetime(year, month, 1, hour, minute)
302 if (wd.month != month):
  /external/skia/infra/bots/recipes/
upload_calmbench_results.py 54 str(now.month).zfill(2), str(now.day).zfill(2), str(now.hour).zfill(2),
  /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/skqp/infra/bots/recipes/
upload_calmbench_results.py 54 str(now.month).zfill(2), str(now.day).zfill(2), str(now.hour).zfill(2),
  /external/skqp/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,
  /external/u-boot/drivers/rtc/
ds1302.c 66 unsigned char month:4; member in struct:ds1302_st
277 tmp->tm_mon=10*bbclk.month10+bbclk.month;
320 bbclk.month=tmp->tm_mon%10;
  /frameworks/av/media/mtp/
MtpUtils.cpp 49 representation, YYYY shall be replaced by the year, MM replaced by the month (01-12),
57 int year, month, day, hour, minute, second; local
59 &year, &month, &day, &hour, &minute, &second) != 6)
83 tm.tm_mon = month - 1; // mktime uses months in 0 - 11 range
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
DangiTest.java 90 int m = cal.get(Calendar.MONTH) + 1; // 0-based -> 1-based
117 cal.set(Calendar.MONTH, cmonth - 1);
134 * month zero. This was a problem with some of the astronomical
147 cal.get(Calendar.MONTH) +
192 // (field, value)+, END, exp.month, exp.isLeapMonth, exp.DOM
193 // Note: exp.month is ONE-BASED
200 // If we set MONTH only, that should be used
203 Calendar.MONTH, 3,
208 Calendar.MONTH, 1, // Should ignore
216 Calendar.MONTH, 3
238 int month = cal.get(Calendar.MONTH); local
    [all...]
CompatibilityTest.java 37 "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH",
105 int y = cal.get(Calendar.YEAR), mon = cal.get(Calendar.MONTH)+1-Calendar.JANUARY,
179 // Julian# Year Month DOM JULIAN:Year, Month, DOM
195 int month = DATA[i+2]; local
204 cal.set(year, month, dom);
209 month2 = cal.get(Calendar.MONTH);
211 s = "G " + year + "-" + (month+1-Calendar.JANUARY) + "-" + dom +
215 if (delta != 0 || year != year2 || month != month2 ||
221 month = DATA[i+5]
456 int year = 1997, month = Calendar.APRIL, date = 1; local
780 private int month; field in class:CompatibilityTest.TransitionItem
971 int month = java.util.Calendar.OCTOBER; \/\/october local
    [all...]
IBMCalendarTest.java 159 * { era, year, gregorianYear, month, dayOfMonth, ... }
171 int month = data[i++]; local
175 grego.set(gregorianYear, month, dayOfMonth);
180 cal.set(year, month, dayOfMonth);
183 logln("OK: " + era + ":" + year + "/" + (month+1) + "/" + dayOfMonth +
186 errln("Fail: " + era + ":" + year + "/" + (month+1) + "/" + dayOfMonth +
197 (cal.get(Calendar.MONTH)+1) + "/" + cal.get(Calendar.DATE));
201 (cal.get(Calendar.MONTH)+1) + "/" + cal.get(Calendar.DATE) +
202 ", expected " + era + ":" + year + "/" + (month+1) + "/" +
272 // new BuddhistCalendar(int year, int month, int date
675 int month; field in class:IBMCalendarTest.TestData
1188 private int month; field in class:IBMCalendarTest.CalFields
1247 int month = cal.get(Calendar.MONTH) + 1; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
DangiTest.java 87 int m = cal.get(Calendar.MONTH) + 1; // 0-based -> 1-based
114 cal.set(Calendar.MONTH, cmonth - 1);
131 * month zero. This was a problem with some of the astronomical
144 cal.get(Calendar.MONTH) +
189 // (field, value)+, END, exp.month, exp.isLeapMonth, exp.DOM
190 // Note: exp.month is ONE-BASED
197 // If we set MONTH only, that should be used
200 Calendar.MONTH, 3,
205 Calendar.MONTH, 1, // Should ignore
213 Calendar.MONTH, 3
235 int month = cal.get(Calendar.MONTH); local
    [all...]
CompatibilityTest.java 34 "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH",
102 int y = cal.get(Calendar.YEAR), mon = cal.get(Calendar.MONTH)+1-Calendar.JANUARY,
176 // Julian# Year Month DOM JULIAN:Year, Month, DOM
192 int month = DATA[i+2]; local
201 cal.set(year, month, dom);
206 month2 = cal.get(Calendar.MONTH);
208 s = "G " + year + "-" + (month+1-Calendar.JANUARY) + "-" + dom +
212 if (delta != 0 || year != year2 || month != month2 ||
218 month = DATA[i+5]
453 int year = 1997, month = Calendar.APRIL, date = 1; local
777 private int month; field in class:CompatibilityTest.TransitionItem
968 int month = java.util.Calendar.OCTOBER; \/\/october local
    [all...]
IBMCalendarTest.java 156 * { era, year, gregorianYear, month, dayOfMonth, ... }
168 int month = data[i++]; local
172 grego.set(gregorianYear, month, dayOfMonth);
177 cal.set(year, month, dayOfMonth);
180 logln("OK: " + era + ":" + year + "/" + (month+1) + "/" + dayOfMonth +
183 errln("Fail: " + era + ":" + year + "/" + (month+1) + "/" + dayOfMonth +
194 (cal.get(Calendar.MONTH)+1) + "/" + cal.get(Calendar.DATE));
198 (cal.get(Calendar.MONTH)+1) + "/" + cal.get(Calendar.DATE) +
199 ", expected " + era + ":" + year + "/" + (month+1) + "/" +
269 // new BuddhistCalendar(int year, int month, int date
672 int month; field in class:IBMCalendarTest.TestData
1185 private int month; field in class:IBMCalendarTest.CalFields
1244 int month = cal.get(Calendar.MONTH) + 1; local
    [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/impl/
OlsonTimeZone.java 105 * cessation lists consist of the month, dowim, dow, time, and time
128 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) {
129 if (month < Calendar.JANUARY || month > Calendar.DECEMBER) {
130 throw new IllegalArgumentException("Month is not in the legal range: " +month);
132 return getOffset(era, year, month, day, dayOfWeek, milliseconds, Grego.monthLength(year, month));
139 public int getOffset(int era, int year, int month,int dom, int dow, int millis, int monthLength){
142 || month < Calendar.JANUAR
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/impl/
OlsonTimeZone.java 104 * cessation lists consist of the month, dowim, dow, time, and time
126 public int getOffset(int era, int year, int month, int day, int dayOfWeek, int milliseconds) {
127 if (month < Calendar.JANUARY || month > Calendar.DECEMBER) {
128 throw new IllegalArgumentException("Month is not in the legal range: " +month);
130 return getOffset(era, year, month, day, dayOfWeek, milliseconds, Grego.monthLength(year, month));
137 public int getOffset(int era, int year, int month,int dom, int dow, int millis, int monthLength){
140 || month < Calendar.JANUAR
    [all...]
  /external/pdfium/xfa/fgas/crt/
cfgas_formatstring.cpp 230 uint32_t month = 1; local
272 month = 0;
273 if (!ExtractCountDigitsWithOptional(str, len, 1, cc, &month))
282 month = i + 1;
319 datetime->SetDate(year, month, day);
506 bool MonthHas30Days(uint32_t month) {
507 return month == 4 || month == 6 || month == 9 || month == 11
567 uint8_t month = datetime.GetMonth(); local
733 uint32_t month = 0; local
    [all...]
  /external/icu/icu4c/source/i18n/
tzrule.cpp 290 int32_t month = fDateTimeRule->getRuleMonth();
295 if (month == UCAL_FEBRUARY && dom == 29 && !Grego::isLeapYear(year)) {
299 ruleDay = Grego::fieldsToDay(year, month, dom);
358 int32_t year, month, dom, dow, doy, mid;
359 Grego::timeToFields(base, year, month, dom, dow, doy, mid);
382 int32_t year, month, dom, dow, doy, mid;
383 Grego::timeToFields(base, year, month, dom, dow, doy, mid);
  /external/python/dateutil/dateutil/test/
test_tz.py     [all...]
  /external/icu/android_icu4j/src/main/java/android/icu/util/
Calendar.java 39 * <code>YEAR</code>, <code>MONTH</code>, <code>DAY</code>, <code>HOUR</code>,
73 * as well as their meaning. For example, the first month of the year has value
74 * <code>MONTH</code> == <code>JANUARY</code> for all calendars. Other values
81 * <code>GregorianCalendar</code> interprets <code>MONTH</code> ==
87 * values between 1 and the length of the month.
97 * first week of the month or year as a reference point. The first week of a
98 * month or year is defined as the earliest seven day period beginning on
100 * <code>getMinimalDaysInFirstWeek()</code> days of that month or year. Weeks
109 * <code>Date</code> (such as only year and month but no day in the month),
4917 int year, month, dayOfMonth, dayOfYear; local
5810 int month = useMonth ? internalGet(MONTH, getDefaultMonthInYear(year)) : 0; local
    [all...]

Completed in 2509 milliseconds

<<11121314151617181920>>