/libcore/ojluni/src/main/java/sun/util/calendar/ |
ImmutableGregorianDate.java | 73 public CalendarDate setMonth(int month) { 149 public CalendarDate setDate(int year, int month, int dayOfMonth) { 153 public CalendarDate addDate(int year, int month, int dayOfMonth) {
|
/packages/apps/Calendar/tests/src/com/android/calendar/ |
WeekNumberTest.java | 37 public DateAndWeekNumber(int year, int month, int day, int expectedWeekNumber) { 41 date.set(0, 0, 0, day, month, year); 44 allDayDate.set(day, month, year);
|
/prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/ |
sqltypes.h | 117 SQLUSMALLINT month; member in struct:tagDATE_STRUCT 137 SQLUSMALLINT month; member in struct:tagTIMESTAMP_STRUCT 160 SQLUINTEGER month; member in struct:tagSQL_YEAR_MONTH
|
/libcore/ojluni/src/main/java/sun/security/util/ |
DerInputBuffer.java | 306 int year, month, day, hour, minute, second, millis; local 327 month = 10 * Character.digit((char)buf[pos++], 10); 328 month += Character.digit((char)buf[pos++], 10); 387 if (month == 0 || day == 0 388 || month > 12 || day > 31 398 date.setDate(year, month, day);
|
/developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/ |
AlarmUtil.java | 52 alarmTime.set(Calendar.MONTH, alarm.month); 62 String.format("Alarm scheduled at (%2d:%02d) Date: %d, Month: %d", 64 alarm.month, alarm.date));
|
/developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/ |
AlarmUtil.java | 52 alarmTime.set(Calendar.MONTH, alarm.month); 62 String.format("Alarm scheduled at (%2d:%02d) Date: %d, Month: %d", 64 alarm.month, alarm.date));
|
/development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/ |
AlarmUtil.java | 52 alarmTime.set(Calendar.MONTH, alarm.month); 62 String.format("Alarm scheduled at (%2d:%02d) Date: %d, Month: %d", 64 alarm.month, alarm.date));
|
/external/dng_sdk/source/ |
dng_date_time.h | 54 /// \param month Month to use from 1 - 12, where 1 is January. 55 /// \param day Day of month to use from 1 -31, where 1 is the first. 61 uint32 month, 283 uint32 month,
|
/external/icu/icu4c/source/i18n/ |
buddhcal.cpp | 79 int32_t BuddhistCalendar::handleComputeMonthStart(int32_t eyear, int32_t month, 83 return GregorianCalendar::handleComputeMonthStart(eyear, month, useMonth);
|
chnsecal.h | 31 * calendar is a lunisolar calendar: Each month starts on a new moon, and 33 * guarantee that month 11 always contains the winter solstice. In order 35 * months are numbered the same as the month they follow. The decision of 36 * which month is a leap month depends on the relative movements of the sun 164 virtual int32_t handleGetMonthLength(int32_t extendedYear, int32_t month) const; 165 virtual int32_t handleComputeMonthStart(int32_t eyear, int32_t month, UBool useMonth) const;
|
ethpccal.h | 42 * Constant for መስከረም, the 1st month of the Ethiopic year. 47 * Constant for ጥቅምት, the 2nd month of the Ethiopic year. 52 * Constant for ኅዳር, the 3rd month of the Ethiopic year. 57 * Constant for ታኅሣሥ, the 4th month of the Ethiopic year. 62 * Constant for ጥር, the 5th month of the Ethiopic year. 67 * Constant for የካቲት, the 6th month of the Ethiopic year. 72 * Constant for መጋቢት, the 7th month of the Ethiopic year. 77 * Constant for ሚያዝያ, the 8th month of the Ethiopic year. 82 * Constant for ግንቦት, the 9th month of the Ethiopic year. 87 * Constant for ሰኔ, the 10th month of the Ethiopic year. [all...] |
vzone.cpp | 117 vzone_getOffset(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day, 119 return ((VTimeZone*)zone)->VTimeZone::getOffset(era, year, month, day, dayOfWeek, millis, status); 123 vzone_getOffset2(VZone* zone, uint8_t era, int32_t year, int32_t month, int32_t day, 126 return ((VTimeZone*)zone)->VTimeZone::getOffset(era, year, month, day, dayOfWeek, millis, monthLength, status);
|
/external/v8/test/mjsunit/regress/ |
regress-builtinbust-7.js | 16 month: "long",
|
/hardware/bsp/intel/peripheral/libupm/src/wt5001/ |
wt5001.h | 254 * @param month Month 258 bool setDate(uint16_t year, uint8_t month, uint8_t day); 324 * @param month Month 328 bool getDate(uint16_t *year, uint8_t *month, uint8_t *day);
|
/packages/apps/Calendar/src/com/android/calendar/month/ |
SimpleDayPickerFragment.java | 17 package com.android.calendar.month; 53 * easily display a month selection component in a given style. 61 // Affects when the month selection will change while scrolling up 70 // The size of the month name displayed above the week list 105 // The first day of the focus month 109 // The name of the month to display 113 // which month should be displayed/highlighted [0-11] 239 // set the title to the month of the second week 365 * in range it will move the list so that the first of the month containing 441 // and if so scroll to the month that contains i [all...] |
/device/google/contexthub/firmware/src/platform/stm32f4xx/ |
rtc.c | 269 uint8_t month; local 279 month = (((dr >> 12) & 0x1) * 10) + ((dr >> 8) & 0xf) - 1; 280 time_s = (((((dr >> 4) & 0x3) * 10) + (dr & 0xF) - 1) + (month << 5) - adjust[month]) * 86400ULL;
|
/external/autotest/client/common_lib/ |
time_utils_unittest.py | 40 TIME_OBJ = datetime.datetime(year=2014, month=8, day=20, hour=14,
|
/external/icu/icu4c/source/test/intltest/ |
tzbdtest.h | 82 void verifyMapping(Calendar& cal, int year, int month, int dom, int hour,
|
/external/libchrome/base/time/ |
time_mac.cc | 176 date.month = exploded.month; 204 exploded->month = date.month;
|
/external/v8/test/mjsunit/ |
to_number_order.js | 60 var month = { valueOf: function() { x += 2; return 2; } }; 68 new Date(year, month, date, hours, minutes, seconds, ms); 73 Date(year, month, date, hours, minutes, seconds, ms); 77 Date.UTC(year, month, date, hours, minutes, seconds, ms); 118 new Date().setMonth(month, date, hours, minutes, seconds, ms); 122 new Date().setUTCMonth(month, date, hours, minutes, seconds, ms); 126 new Date().setFullYear(year, month, date, hours, minutes, seconds, ms); 130 new Date().setUTCFullYear(year, month, date, hours, minutes, seconds, ms);
|
/hardware/bsp/intel/peripheral/libupm/src/maxds3231m/ |
maxds3231m.h | 60 uint8_t month; member in struct:upm::Time3231
|
/hardware/intel/img/psb_headers/DRM/cc54/inc/ |
drm_common_api.h | 45 // month: 0 = January. 55 uint8_t month; member in struct:time_of_day
|
/hardware/ti/omap4-aah/camera/inc/ |
NV12_resize.h | 52 mmInt32 month; member in struct:__anon34863
|
/hardware/ti/omap4xxx/camera/inc/ |
NV12_resize.h | 41 mmInt32 month; member in struct:__anon34985
|
/packages/apps/Email/tests/src/com/android/emailcommon/utility/ |
UtilityTest.java | 36 private void testParseDateTimesHelper(String date, int year, int month, 40 assertEquals(month, cal.get(Calendar.MONTH) + 1); 59 private void testParseEmailDateTimeHelper(String date, int year, int month, 61 GregorianCalendar cal = new GregorianCalendar(year, month - 1, day,
|