HomeSort by relevance Sort by last modified time
    Searched refs:month (Results 151 - 175 of 1124) sorted by null

1 2 3 4 5 67 8 91011>>

  /external/icu/icu4j/main/tests/framework/src/com/ibm/icu/dev/test/
AbstractTestLog.java 115 public boolean isDateAtLeast(int year, int month, int day){
117 Calendar c = new GregorianCalendar(year, month, day);
  /external/libchrome/base/third_party/nspr/
prtime.cc 109 * each month, where index 1 is January, and day 0 is January 1.
118 * The number of days in a month
315 /* Normalize month and year before mday */
325 /* Now that month and year are in proper range, normalize mday */
330 /* the previous month */
464 TIME_TOKEN month = TT_UNKNOWN; local
493 if (month == TT_UNKNOWN &&
496 month = TT_APR;
501 else if (month == TT_UNKNOWN &&
504 month = TT_AUG
    [all...]
  /frameworks/base/core/java/android/util/
DayOfMonthCursor.java 20 * Helps control and display a month view of a calendar that has a current
23 * <li>Keeps track of current month, day, year</li>
29 * This should be used by anyone who presents a month view to users and wishes
31 * mind about when to flip the month, we can change it here only.
42 * @param month The initial month.
48 public DayOfMonthCursor(int year, int month, int dayOfMonth, int weekStartDay) {
49 super(year, month, weekStartDay);
73 * @return 0 if the selection is in the current month, otherwise -1 or +1
96 * Move up one box, potentially flipping to the previous month
    [all...]
  /libcore/ojluni/src/test/java/time/test/java/time/chrono/
TestJapaneseChronology.java 49 // Japanese era, yearOfEra, month, dayOfMonth, gregorianYear
67 // Japanese era, yearOfEra, dayOfYear, month, dayOfMonth
94 // Japanese era, yearOfEra, month, dayOfMonth
154 public void test_transitions(JapaneseEra era, int yearOfEra, int month, int dayOfMonth, int gregorianYear) {
157 JapaneseDate jdate1 = JapaneseDate.of(era, yearOfEra, month, dayOfMonth);
158 JapaneseDate jdate2 = JapaneseDate.of(gregorianYear, month, dayOfMonth);
172 public void test_firstDayOfEra(JapaneseEra era, int yearOfEra, int dayOfYear, int month, int dayOfMonth) {
174 JapaneseDate date2 = JAPANESE.date(era, yearOfEra, month, dayOfMonth);
179 public void test_invalidDate(JapaneseEra era, int yearOfEra, int month, int dayOfMonth) {
180 JapaneseDate jdate = JapaneseDate.of(era, yearOfEra, month, dayOfMonth)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
DayOfMonthCursor.java 22 * Helps control and display a month view of a calendar that has a current
25 * <li>Keeps track of current month, day, year</li>
31 * This should be used by anyone who presents a month view to users and wishes
33 * mind about when to flip the month, we can change it here only.
44 * @param month The initial month.
50 public DayOfMonthCursor(int year, int month, int dayOfMonth, int weekStartDay) {
51 super(year, month, weekStartDay);
75 * @return 0 if the selection is in the current month, otherwise -1 or +1
98 * Move up one box, potentially flipping to the previous month
    [all...]
  /prebuilts/gdb/darwin-x86/lib/python2.7/sqlite3/
dbapi2.py 67 year, month, day = map(int, datepart.split("-"))
75 val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
  /prebuilts/gdb/linux-x86/lib/python2.7/sqlite3/
dbapi2.py 67 year, month, day = map(int, datepart.split("-"))
75 val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 67 year, month, day = map(int, datepart.split("-"))
75 val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/sqlite3/
dbapi2.py 67 year, month, day = map(int, datepart.split("-"))
75 val = datetime.datetime(year, month, day, hours, minutes, seconds, microseconds)
  /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/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
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);
AlarmStorage.java 62 * @param month the integer represents a month
68 public Alarm saveAlarm(int month, int date, int hour, int minute) {
72 alarm.month = month;
  /developers/samples/android/security/DirectBoot/Application/src/main/java/com/example/android/directboot/alarms/
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);
AlarmStorage.java 62 * @param month the integer represents a month
68 public Alarm saveAlarm(int month, int date, int hour, int minute) {
72 alarm.month = month;
  /development/samples/browseable/DirectBoot/src/com.example.android.directboot/alarms/
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/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);
  /frameworks/base/core/java/com/android/internal/http/
HttpDateTime.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);
  /frameworks/ex/common/java/com/android/common/
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);
  /libcore/ojluni/src/main/java/java/time/
Month.java 83 * A month-of-year, such as 'July'.
85 * {@code Month} is an enum representing the 12 months of the year -
89 * In addition to the textual enum name, each month-of-year has an {@code int} value.
94 * <b>Do not use {@code ordinal()} to obtain the numeric representation of {@code Month}.
98 * As such, this enum may be used by any calendar system that has the month-of-year
106 public enum Month implements TemporalAccessor, TemporalAdjuster {
109 * The singleton instance for the month of January with 31 days.
114 * The singleton instance for the month of February with 28 days, or 29 in a leap year.
119 * The singleton instance for the month of March with 31 days.
124 * The singleton instance for the month of April with 30 days
    [all...]
  /external/robolectric/v1/src/test/java/com/xtremelabs/robolectric/shadows/
TimeTest.java 35 assertEquals(t.month, t2.month);
50 assertEquals(t.month, t2.month);
62 assertEquals(t.month, 1);
71 assertEquals(t.month, 1);
91 assertEquals(0, t.month);
136 assertEquals(9, t.month);
144 assertEquals(9, t.month);
162 assertEquals(9, t.month);
    [all...]
  /external/v8/src/builtins/
builtins-date.cc 44 // ES6 section 20.3.1.13 MakeDay (year, month, date)
45 double MakeDay(double year, double month, double date) {
47 (kMinMonth <= month && month <= kMaxMonth) && std::isfinite(date)) {
49 int m = FastD2I(month);
156 int year, month, day, weekday, hour, min, sec, ms; local
157 date_cache->BreakDownTime(local_time_ms, &year, &month, &day, &weekday, &hour,
166 kShortMonths[month], day, year);
175 kShortWeekDays[weekday], kShortMonths[month], day, year, hour,
238 double month = month_object->Number() local
308 double month = 0.0, date = 1.0, hours = 0.0, minutes = 0.0, seconds = 0.0, local
373 int year, month, day; local
394 int year, month, day; local
400 Handle<Object> month = args.at(2); local
507 Handle<Object> month = args.atOrUndefined(isolate, 1); local
575 int year, month, day; local
595 int year, month, day; local
601 Handle<Object> month = args.at(2); local
705 Handle<Object> month = args.atOrUndefined(isolate, 1); local
773 int year, month, day, weekday, hour, min, sec, ms; local
779 month + 1, day, hour, min, sec, ms); local
782 month + 1, day, hour, min, sec, ms); local
785 month + 1, day, hour, min, sec, ms); local
822 int year, month, day, weekday, hour, min, sec, ms; local
840 int year, month, day; local
861 int year, month, day; local
    [all...]
  /external/python/cpython2/Lib/
calendar.py 14 "monthcalendar", "prmonth", "month", "prcal", "calendar",
22 def __init__(self, month):
23 self.month = month
25 return "bad month number %r; must be 1-12" % self.month
39 # Number of days per month (except for February in leap years)
42 # This module used to have hard-coded lists of day and month names, as
110 def weekday(year, month, day):
111 """Return weekday (0-6 ~ Mon-Sun) for year (1970-...), month (1-12)
586 month = c.formatmonth variable
    [all...]
  /libcore/ojluni/src/main/java/java/time/chrono/
HijrahChronology.java 96 * In some variants the length of each month is
98 * in others the length of the month is determined by an authorized sighting
104 * The length of each month is 29 or 30 days.
147 * ISO calendar, and the length of each month for a range of years.
205 * <td>The value is a sequence of 12 month lengths,
209 * The month lengths must be between 29-32 inclusive.
243 * Array of epoch days indexed by Hijrah Epoch month.
258 * The minimum epoch month.
263 * The minimum length of a month.
268 * The maximum length of a month
650 int month = epochMonthToMonth(epochMonth); local
    [all...]
  /external/webrtc/webrtc/base/
timeutils.cc 212 int month = tm.tm_mon; local
223 if (month < 0 || month > 11)
225 if (day < 0 || day >= mdays[month] + (expiry_in_leap_year && month == 2 - 1))
234 day += cumul_mdays[month];
242 if (expiry_in_leap_year && month <= 2 - 1) // |month| is zero based.
245 // Combine all variables into seconds from 1970-01-01 00:00 (except |month|
  /libcore/luni/src/main/java/javax/xml/datatype/
DatatypeFactory.java 148 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
150 * year, month, day, hour, minute, and second.
177 * Gregorian year, month, day, hour, minute, and second components defined in Section 5.5.3.2 of [ISO 8601], respectively.
179 * year, month, day, hour, minute, and second.
194 * {@link java.util.Calendar#MONTH} = {@link java.util.Calendar#JANUARY},
197 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
368 * {@link java.util.Calendar#MONTH} = {@link java.util.Calendar#JANUARY},
371 * e.g. leap years have different days in the month = {@link java.util.Calendar#FEBRUARY}
525 * whose lexical representation contains only year and month components.
564 * whose lexical representation contains only year and month components
    [all...]

Completed in 1889 milliseconds

1 2 3 4 5 67 8 91011>>