HomeSort by relevance Sort by last modified time
    Searched defs:month (Results 201 - 225 of 624) sorted by null

1 2 3 4 5 6 7 891011>>

  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
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...]
CalendarRegressionTest.java 54 "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH",
169 calendar.set(Calendar.MONTH,3);
173 logln("MONTH: " + calendar.get(Calendar.MONTH));
180 //This will print out todays date for MONTH and DAY_OF_MONTH
183 logln("MONTH: " + calendar.get(Calendar.MONTH));
188 if (calendar.get(Calendar.MONTH) != 3 ||
221 * calendar.get(calendar.YEAR)); logln("MONTH: " +
222 * calendar.get(calendar.MONTH)); logln("WEEK_OF_YEAR: "
514 int sec = 0, min = 0, hr = 0, day = 1, month = 10, year = 1997; local
2519 int jd, month, dayOfMonth; local
    [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/format/
DateFormatRegressionTest.java 531 // choose a date that is the FIRST of some month
970 int month = cal.get(Calendar.MONTH); local
    [all...]
  /external/icu/icu4c/source/i18n/
vtzone.cpp 79 // Month length for non-leap year
192 int32_t year, month, dom, dow, doy, mid; local
193 Grego::timeToFields(time, year, month, dom, dow, doy, mid);
197 appendAsciiDigits(month + 1, 2, str);
232 int32_t year = 0, month = 0, day = 0, hour = 0, min = 0, sec = 0; local
255 month = parseAsciiDigits(str, 4, 2, status) - 1; // 0-based
266 int32_t maxDayOfMonth = Grego::monthLength(year, month);
267 if (year < 0 || month < 0 || month > 11 || day < 1 || day > maxDayOfMonth ||
280 UDate time = Grego::fieldsToDay(year, month, day) * U_MILLIS_PER_DAY
541 int32_t month, dayOfWeek, nthDayOfWeek, dayOfMonth = 0; local
817 int32_t month = -1, dom = 0, dow = 0; local
1931 int32_t year, month, dom, dow, doy, mid; local
    [all...]
  /external/icu/icu4c/source/test/intltest/
calregts.cpp 103 "MONTH",
347 logln(UnicodeString("MONTH: ") + calendar->get(UCAL_MONTH, status));
354 //This will print out todays date for MONTH and DAY_OF_MONTH
357 logln(UnicodeString("MONTH: ") + calendar->get(UCAL_MONTH, status));
405 logln("MONTH: " + Calendar::get(Calendar::MONTH));
432 logln("MONTH: " + Calendar::get(Calendar::MONTH));
551 //cal.add(field, amount); //<-- PROBLEM SEEN WITH field = DATE,MONTH
811 cal1.set( Calendar::MONTH, 10 )
866 int32_t sec = 0, min = 0, hr = 0, day = 1, month = 10, year = 1997; local
2464 int32_t month = cal->get(UCAL_MONTH, status); local
3004 int32_t jd, month, dayOfMonth; local
    [all...]
dtfmttst.cpp 843 int32_t month,yr,day,hr,min,sec; dateToFields(d,yr,month,day,hr,min,sec); local
844 logln((UnicodeString)" -> parse -> " + s + " (month = " + month + ")");
845 if (month != UCAL_JUNE) errln((UnicodeString)"FAIL: Month should be June");
849 dateToFields(d,yr,month,day,hr,min,sec);
850 logln((UnicodeString)" -> parse -> " + s + " (month = " + month + ")");
851 if (month != UCAL_JULY) errln((UnicodeString)"FAIL: Month should be July")
907 int32_t year,month,day,hour,min,sec; dateToFields(today,year,month,day,hour,min,sec); local
4046 int32_t month; \/\/ 1-based member in struct:__anon21699
4153 int32_t month = rootChineseCalendar->get(UCAL_MONTH, status) + 1; local
4245 int32_t month; member in struct:__anon21702
4348 int32_t month = cal->get(UCAL_MONTH, status); local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
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...]
CalendarRegressionTest.java 51 "ERA", "YEAR", "MONTH", "WEEK_OF_YEAR", "WEEK_OF_MONTH",
166 calendar.set(Calendar.MONTH,3);
170 logln("MONTH: " + calendar.get(Calendar.MONTH));
177 //This will print out todays date for MONTH and DAY_OF_MONTH
180 logln("MONTH: " + calendar.get(Calendar.MONTH));
185 if (calendar.get(Calendar.MONTH) != 3 ||
218 * calendar.get(calendar.YEAR)); logln("MONTH: " +
219 * calendar.get(calendar.MONTH)); logln("WEEK_OF_YEAR: "
511 int sec = 0, min = 0, hr = 0, day = 1, month = 10, year = 1997; local
2516 int jd, month, dayOfMonth; local
    [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/format/
DateFormatRegressionTest.java 528 // choose a date that is the FIRST of some month
967 int month = cal.get(Calendar.MONTH); local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
BearerData.java 243 int month = IccUtils.cdmaBcdByteToInt(data[1]); local
244 if (month < 1 || month > 12) return null;
245 ts.month = month - 1;
266 builder.append(", month=" + month);
    [all...]
  /libcore/ojluni/src/main/java/java/util/
GregorianCalendar.java 137 * <h4>Week Of Month</h4>
140 * to 6. Week 1 of a month (the days with <code>WEEK_OF_MONTH =
142 * <code>getMinimalDaysInFirstWeek()</code> contiguous days in that month,
144 * week 1 of a year, week 1 of a month may be shorter than 7 days, need
146 * the previous month. Days of a month before week 1 have a
193 * <code>MONTH<br></code>
280 * System.out.println("MONTH: " + calendar.get(Calendar.MONTH));
305 * System.out.println("MONTH: " + calendar.get(Calendar.MONTH))
957 int month = internalGet(MONTH) + amount; local
2440 int month = cdate.getMonth() - 1; \/\/ 0-based local
3015 int month = JANUARY; local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
datetimemodule.c 95 /* M is a char or int claiming to be a valid month. The macro is equivalent
161 /* For each month ordinal in 1..12, the number of days in that month,
162 * and the number of days before that month in the same year. These
188 /* year, month -> number of days in that month in that year */
190 days_in_month(int year, int month)
192 assert(month >= 1);
193 assert(month <= 12);
194 if (month == 2 && is_leap(year))
2283 int month; local
2385 int month; local
2412 int month = GET_MONTH(date); local
2647 int month = GET_MONTH(self); local
3674 int month; local
4077 int month = GET_MONTH(date); local
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
datetimemodule.c 95 /* M is a char or int claiming to be a valid month. The macro is equivalent
161 /* For each month ordinal in 1..12, the number of days in that month,
162 * and the number of days before that month in the same year. These
188 /* year, month -> number of days in that month in that year */
190 days_in_month(int year, int month)
192 assert(month >= 1);
193 assert(month <= 12);
194 if (month == 2 && is_leap(year))
2283 int month; local
2385 int month; local
2412 int month = GET_MONTH(date); local
2647 int month = GET_MONTH(self); local
3674 int month; local
4077 int month = GET_MONTH(date); local
    [all...]
  /external/google-breakpad/src/google_breakpad/common/
minidump_format.h 665 uint16_t month; member in struct:__anon20870
686 * the month member in the MDSystemTime structure is zero. */
698 * the month member in the MDSystemTime structure is zero.*/
    [all...]
  /external/icu/icu4c/source/tools/tzcode/
zic.c 1271 int month, day; local
1305 error(_("invalid month name"));
1308 month = lp->l_value;
1310 while (j != month) {
1317 day <= 0 || day > len_months[isleap(year)][month]) {
1318 error(_("invalid day of month"));
2029 register int month, total; local
    [all...]
  /external/libpng/
png.h 634 png_byte month; /* month of year, 1 - 12 */ member in struct:png_time_struct
635 png_byte day; /* day of month, 1 - 31 */
    [all...]
  /external/pdfium/third_party/libpng16/
png.h 639 png_byte month; /* month of year, 1 - 12 */ member in struct:png_time_struct
640 png_byte day; /* day of month, 1 - 31 */
    [all...]
  /external/python/cpython2/Modules/
datetimemodule.c 95 /* M is a char or int claiming to be a valid month. The macro is equivalent
161 /* For each month ordinal in 1..12, the number of days in that month,
162 * and the number of days before that month in the same year. These
188 /* year, month -> number of days in that month in that year */
190 days_in_month(int year, int month)
192 assert(month >= 1);
193 assert(month <= 12);
194 if (month == 2 && is_leap(year)
2283 int month; local
2385 int month; local
2412 int month = GET_MONTH(date); local
2647 int month = GET_MONTH(self); local
3674 int month; local
4077 int month = GET_MONTH(date); local
    [all...]
  /external/syslinux/com32/include/
png.h 737 png_byte month; \/* month of year, 1 - 12 *\/ member in struct:png_time_struct
    [all...]
  /external/wpa_supplicant_8/src/common/
dpp.c 3708 unsigned int year, month, day, hour, min, sec; local
    [all...]
  /hardware/ril/include/telephony/
ril_cdma_sms.h 626 unsigned char month; /* 0x01-0x12 */ member in struct:__anon52847
  /libcore/ojluni/src/main/java/java/time/format/
DateTimeFormatterBuilder.java 346 * an optional month, with a further optional day-of-month. Using such a
348 * year-month or just a year had been parsed. This method can be used to
349 * default the month and day-of-month to a sensible value, such as the
350 * first of the month, allowing the calling code to always get a date.
421 * The month is a fixed width parse of 2 digits.
423 * the year parser will reserve two digits for the month to parse.
424 * Thus, the text '201106' will correctly parse to a year of 2011 and a month of 6.
426 * nothing for the month
3266 int month = newContext.getParsed(MONTH_OF_YEAR).intValue(); local
    [all...]
  /prebuilts/tools/common/m2/repository/com/ibm/icu/icu4j/2.6.1/
icu4j-2.6.1.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 
  /prebuilts/misc/common/robolectric/3.1.1/lib/
icu4j-53.1.jar 

Completed in 1955 milliseconds

1 2 3 4 5 6 7 891011>>