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

1 2 3 4 5 6 7 8 91011>>

  /external/apache-harmony/support/src/test/java/tests/support/
Support_TimeZone.java 46 * let's assume this timezone has daylight savings from the 4th month till
47 * the 10th month of the year to ame things simple.
56 int month = cal.get(Calendar.MONTH); local
58 if (month > 4 && month < 10) {
  /external/icu/icu4c/source/test/intltest/
calcasts.h 33 int32_t month; member in struct:CalendarCaseTest::TestCase
  /external/protobuf/src/google/protobuf/stubs/
time.h 41 int month; member in struct:google::protobuf::internal::DateTime
  /libcore/support/src/test/java/tests/support/
Support_TimeZone.java 46 * let's assume this timezone has daylight savings from the 4th month till
47 * the 10th month of the year to ame things simple.
56 int month = cal.get(Calendar.MONTH); local
58 if (month > 4 && month < 10) {
  /external/v8/src/
dateparser.cc 15 // Day and month defaults to 1.
21 int month = kNone; local
28 month = comp_[1];
32 month = comp_[0];
37 month = named_month_;
57 if (!Smi::IsValid(year) || !IsMonth(month) || !IsDay(day)) return false;
60 output->set(MONTH, Smi::FromInt(month - 1)); // 0-based
162 // Word longer than keyword is only allowed for month names.
  /system/core/logcat/tests/
logcat_benchmark.cpp 37 int month; member in class:timestamp
49 ok = sscanf(buffer, "%d-%d %d:%d:%d.%d ", &month, &day, &hour,
59 return !ok || !T.ok || (month < T.month) ||
60 ((month == T.month) &&
  /developers/build/prebuilts/gradle/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
Alarm.java 34 public int month; field in class:Alarm
43 public Alarm(int id, int month, int date, int hour, int minute) {
45 this.month = month;
63 jsonObject.put("month", month);
85 alarm.month = jsonObject.getInt("month");
100 ", month=" + month
    [all...]
AlarmUtil.java 55 alarmTime.set(Calendar.MONTH, alarm.month);
66 String.format("Alarm scheduled at (%2d:%02d) Date: %d, Month: %d",
68 alarm.month, alarm.date));
103 int month = extras.getInt(AlarmIntentService.KEY_ALARM_MONTH); local
108 return new Alarm(id, month, date, hour, minute);
114 extras.putInt(AlarmIntentService.KEY_ALARM_MONTH, alarm.month);
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
Alarm.java 34 public int month; field in class:Alarm
43 public Alarm(int id, int month, int date, int hour, int minute) {
45 this.month = month;
63 jsonObject.put("month", month);
85 alarm.month = jsonObject.getInt("month");
100 ", month=" + month
    [all...]
AlarmUtil.java 55 alarmTime.set(Calendar.MONTH, alarm.month);
66 String.format("Alarm scheduled at (%2d:%02d) Date: %d, Month: %d",
68 alarm.month, alarm.date));
103 int month = extras.getInt(AlarmIntentService.KEY_ALARM_MONTH); local
108 return new Alarm(id, month, date, hour, minute);
114 extras.putInt(AlarmIntentService.KEY_ALARM_MONTH, alarm.month);
  /development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
Alarm.java 34 public int month; field in class:Alarm
43 public Alarm(int id, int month, int date, int hour, int minute) {
45 this.month = month;
63 jsonObject.put("month", month);
85 alarm.month = jsonObject.getInt("month");
100 ", month=" + month
    [all...]
AlarmUtil.java 55 alarmTime.set(Calendar.MONTH, alarm.month);
65 String.format("Alarm scheduled at (%2d:%02d) Date: %d, Month: %d",
67 alarm.month, alarm.date));
102 int month = extras.getInt(AlarmIntentService.KEY_ALARM_MONTH); local
107 return new Alarm(id, month, date, hour, minute);
113 extras.putInt(AlarmIntentService.KEY_ALARM_MONTH, alarm.month);
  /external/icu/icu4c/source/i18n/
coptccal.cpp 80 int32_t eyear, month, day, era, year; local
81 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day);
94 internalSet(UCAL_MONTH, month);
96 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
155 CopticCalendar::copticToJD(int32_t year, int32_t month, int32_t day)
157 return CECalendar::ceToJD(year, month, day, COPTIC_JD_EPOCH_OFFSET);
ethpccal.cpp 106 int32_t eyear, month, day, era, year; local
107 jdToCE(julianDay, getJDEpochOffset(), eyear, month, day);
125 internalSet(UCAL_MONTH, month);
127 internalSet(UCAL_DAY_OF_YEAR, (30 * month) + day);
199 EthiopicCalendar::ethiopicToJD(int32_t year, int32_t month, int32_t date)
201 return ceToJD(year, month, date, JD_EPOCH_OFFSET_AMETE_MIHRET);
  /external/icu/icu4c/source/test/compat/
tzdate.c 34 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime);
41 int year, month, day, hour, minute; local
46 sysyear = year = month = day = 0;
54 month = atoi(argv[2]);
63 systemtime = getSystemCurrentTime(systime, sysyear, month, day, hour, minute, useCurrentTime);
111 int64_t getSystemCurrentTime(char* systime, int year, int month, int day, int hour, int minute, int useCurrentTime) {
122 ts.tm_mon = month - OFFSET_MONTH;
  /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
  /libcore/ojluni/src/test/java/time/tck/java/time/format/
TCKResolverStyle.java 110 public void test_resolverStyle(String str, ResolverStyle style, Class<?> expectedEx, int year, int month, int day) {
128 assertEquals(accessor.get(ChronoField.MONTH_OF_YEAR), month); local
  /packages/apps/Gallery2/src/com/android/gallery3d/ingest/data/
SimpleDate.java 26 * Represents a date (year, month, day)
30 public int month; // MM field in class:SimpleDate
50 this.month = sCalendarInstance.get(Calendar.MONTH);
63 result = prime * result + month;
83 if (month != other.month) {
98 int monthDiff = this.month - other.getMonth();
112 return month;
  /prebuilts/gcc/linux-x86/host/x86_64-w64-mingw32-4.8/x86_64-w64-mingw32/include/
winnls32.h 20 WORD month; member in struct:_tagDATETIME
  /tools/apkzlib/src/main/java/com/android/tools/build/apkzlib/zip/utils/
MsDosDateTimeUtils.java 82 int month = c.get(Calendar.MONTH) + 1; local
94 * 5-8: month (4 bits = 16 values)
99 return (year << 9) | (month << 5) | day;
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
CreditCardExpirationDateCompoundView.java 38 * 2 {@link Spinner spinners} to represent the credit card expiration month and year.
103 int month = mCcExpMonthSpinner.getSelectedItemPosition(); local
105 calendar.set(Calendar.MONTH, month);
118 int month = calendar.get(Calendar.MONTH); local
120 mCcExpMonthSpinner.setSelection(month);
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/
CreditCardExpirationDateCompoundView.java 40 * 2 {@link Spinner spinners} to represent the credit card expiration month and year.
105 int month = mCcExpMonthSpinner.getSelectedItemPosition(); local
107 calendar.set(Calendar.MONTH, month);
120 int month = calendar.get(Calendar.MONTH); local
122 mCcExpMonthSpinner.setSelection(month);
  /external/apache-http/android/src/android/net/http/
LegacyHttpDateTime.java 55 * Mon can be the full name of the month.
89 int month = Calendar.JANUARY; local
96 month = getMonth(rfcMatcher.group(2));
102 month = getMonth(ansicMatcher.group(1));
114 month = Calendar.JANUARY;
120 month, year);
  /external/icu/android_icu4j/src/main/java/android/icu/util/
AnnualTimeZoneRule.java 125 int month = dateTimeRule.getRuleMonth(); local
130 if (month == Calendar.FEBRUARY && dom == 29 && !Grego.isLeapYear(year)) {
134 ruleDay = Grego.fieldsToDay(year, month, dom);
DateTimeRule.java 16 * a rule specified by month, day of month, day of week and
26 * Date rule type defined by exact day of month.
32 * Date rule type defined by day of week in month.
39 * after exact day of month.
46 * before exact day of month.
68 private final int month; field in class:DateTimeRule
77 * Constructs a <code>DateTimeRule</code> by the day of month and
81 * @param month The rule month, for example, <code>Calendar.JANUARY</code
    [all...]

Completed in 876 milliseconds

1 2 3 4 5 6 7 8 91011>>