/libcore/luni/src/test/java/tests/sql/ |
ResultSetGetterTests.java | [all...] |
/packages/apps/Settings/src/com/android/settings/ |
DateTimeSettings.java | 156 public void onDateSet(DatePicker view, int year, int month, int day) { 160 c.set(Calendar.MONTH, month); 216 calendar.get(Calendar.MONTH), 248 calendar.get(Calendar.MONTH),
|
/development/samples/ApiDemos/src/com/example/android/apis/view/ |
DateWidgets1.java | 83 mMonth = c.get(Calendar.MONTH); 120 // Month is 0 based so add 1
|
/external/v8/src/ |
dateparser.cc | 37 int month = kNone; local 45 month = comp_[1]; 49 month = comp_[0]; 54 month = named_month_; 73 if (!Smi::IsValid(year) || !IsMonth(month) || !IsDay(day)) return false; 76 output->set(MONTH, Smi::FromInt(month - 1)); // 0-based 160 // Word longer than keyword is only allowed for month names.
|
dateparser.h | 42 // [1]: month (0 = Jan, 1 = Feb, ...) 53 YEAR, MONTH, DAY, HOUR, MINUTE, SECOND, UTC_OFFSET, OUTPUT_SIZE
|
/libcore/support/src/test/java/tests/support/ |
Support_MessageFormat.java | 88 v.add(new FieldContainer(3, 6, DateFormat.Field.MONTH));
|
/external/nist-sip/java/gov/nist/javax/sip/header/ |
SIPDate.java | 108 /** month member 110 protected int month; field in class:SIPDate 141 this.month == other.month && 154 month = -1; 202 month = javaCal.get(Calendar.MONTH); 203 switch (month) { 242 "No date map for month " + month); [all...] |
/frameworks/base/core/java/android/widget/ |
DatePicker.java | 38 * A view for selecting a month / year / day based on a calendar like layout. 73 * @param monthOfYear The month that was set (0-11) for compatibility 75 * @param dayOfMonth The day of the month that was set. 103 mMonthPicker = (NumberPicker) findViewById(R.id.month); 109 * If the user is in a locale where the month names are numeric, 110 * use just the number instead of the "month" character for 126 /* We display the month 1-12 but store it 0-11 so always 130 // Adjust max day of the month 159 init(cal.get(Calendar.YEAR), cal.get(Calendar.MONTH), cal.get(Calendar.DAY_OF_MONTH), null); 221 } else if ((c == DateFormat.MONTH || c == 'L') && !didMonth) [all...] |
/libcore/luni/src/main/java/java/text/ |
DateFormat.java | 182 * to the {@link Calendar#MONTH} field. 754 * Marks the month part of a date. 756 public final static Field MONTH = new Field("month", Calendar.MONTH); 789 * Marks the day of the month part of a date. 791 public final static Field DAY_OF_MONTH = new Field("day of month", Calendar.DAY_OF_MONTH); 799 * Marks the day of the week in the month part of a date. 801 public final static Field DAY_OF_WEEK_IN_MONTH = new Field("day of week in month", 811 * Marks the week of the month part of a date [all...] |
SimpleDateFormat.java | 64 * <tr> <td>{@code F}</td> <td>day of week in month</td> <td>(Number)</td> <td>2 <i>(2nd Wed in July)</i></td> </tr> 68 * <tr> <td>{@code L}</td> <td>stand-alone month</td> <td>(Text/Number)</td> <td>July / 07</td> </tr> 69 * <tr> <td>{@code M}</td> <td>month in year</td> <td>(Text/Number)</td> <td>July / 07</td> </tr> 71 * <tr> <td>{@code W}</td> <td>week in month</td> <td>(Number)</td> <td>2</td> </tr> 75 * <tr> <td>{@code d}</td> <td>day in month</td> <td>(Number)</td> <td>10</td> </tr> 204 // 'L' and 'c' are ICU-compatible extensions for stand-alone month and stand-alone weekday. 614 dateFormatField = Field.MONTH; 618 dateFormatField = Field.MONTH; 720 int month = calendar.get(Calendar.MONTH); local [all...] |
/frameworks/base/services/java/com/android/server/ |
ThrottleService.java | 656 int month = end.get(Calendar.MONTH); local 657 if (month == Calendar.DECEMBER) { 659 month = Calendar.JANUARY - 1; 661 end.set(Calendar.MONTH, month + 1); 674 int month = end.get(Calendar.MONTH); local 675 if (end.get(Calendar.MONTH) == Calendar.JANUARY) { 676 month = Calendar.DECEMBER + 1 [all...] |
/frameworks/base/core/java/android/text/format/ |
Time.java | 66 * Day of month [1-31] 71 * Month [0-11] 73 public int month; field in class:Time 118 public static final int MONTH = 5; 228 int n = DAYS_PER_MONTH[this.month]; 236 case MONTH: 269 this.month = 0; 557 this.month = that.month; 569 public void set(int second, int minute, int hour, int monthDay, int month, int year) [all...] |
/libcore/luni/src/test/java/tests/api/java/util/ |
DateTest.java | 354 assertEquals("Returned incorrect month", 9, d.getMonth()); 453 assertEquals("Parsed incorrect month", 9, cal.get(Calendar.MONTH)); 553 assertEquals("Set incorrect month", 0, d.getMonth()); 640 cal.set(Calendar.MONTH, Calendar.JANUARY);
|
/packages/apps/Email/src/com/android/exchange/utility/ |
CalendarUtilities.java | 182 int month; field in class:CalendarUtilities.TimeZoneDate 193 setWord(bytes, offset + MSFT_SYSTEMTIME_MONTH, rrule.month); 210 setWord(bytes, offset + MSFT_SYSTEMTIME_MONTH, cal.get(Calendar.MONTH) + 1); 232 // MSFT month = 0 means no daylight time 238 tzd.month = num -1; 272 testCalendar.set(GregorianCalendar.MONTH, tzd.month); 349 int month; field in class:CalendarUtilities.RRule 353 * Create an RRULE based on month and date 354 * @param _month the month (1 = JAN, 12 = DEC 400 int month = calendar.get(Calendar.MONTH); local [all...] |
/cts/tests/tests/text/src/android/text/format/cts/ |
TimeTest.java | 80 time.month = 2; 86 assertEquals(3, cal.get(Calendar.MONTH)); 88 assertEquals(expectedMonth, time.month); 92 time.month = 2; 95 assertEquals(expectedMonth, time.month); 127 final int month = 5; local 130 time.set(date, month, year); 132 assertEquals(month, time.month); 147 assertEquals(time.month, anotherTime.month) 675 final int month = 6; local [all...] |
/cts/tools/host/src/com/android/cts/ |
HostUtils.java | 259 int month = cal.get(Calendar.MONTH) + 1; local 280 fmt.format(formatStr, year, month, date, hour, min, sec);
|
/external/chromium/third_party/icu/source/tools/gendraft/ |
genheaders.pl | 124 ($DAY, $MONTH, $YEAR) = (localtime)[3,4,5];
|
/external/icu4c/tools/gendraft/ |
genheaders.pl | 127 ($DAY, $MONTH, $YEAR) = (localtime)[3,4,5];
|
/external/webkit/WebCore/html/ |
HTMLInputElement.h | 65 MONTH,
|
/libcore/luni/src/main/java/java/util/zip/ |
ZipEntry.java | 281 modDate = (cal.get(Calendar.MONTH) + 1 << 5) | modDate;
|
/packages/providers/CalendarProvider/src/com/android/providers/calendar/ |
RecurrenceProcessor.java | 188 iterator.month + 1); 315 int realMonth = iterator.month; 321 + " " + iterator.month 326 // if might be past the end of the month, we need to normalize it 331 realMonth = t.month; 334 Log.i(TAG, "normalized t=" + t + " " + t.month 351 Log.i(TAG, "set t=" + t + " " + t.month 368 * Fill in a bit set containing the days of the month on which this 391 // calculate the day of week for the first of this month (first) 404 // This isn't ideal, but we'll generate a month's worth of event 769 int month = usebymonth local 999 int month = date.month; local [all...] |
/frameworks/base/obex/javax/obex/ |
ObexHelper.java | 241 temp.set(Calendar.MONTH, Integer.parseInt(dateString.substring( 432 temp = dateHeader.get(Calendar.MONTH); [all...] |
/libcore/luni/src/main/java/java/util/ |
SimpleTimeZone.java | 37 * {@code SimpleTimeZone} should count from the end of the month 134 * By default, this constructor specifies day-of-week-in-month rules. That 140 * Day of month: To specify an exact day of the month, such as March 1, set 143 * Day of week after day of month: To specify the first day of the week 144 * occurring on or after an exact day of the month, make the day of the week 149 * Day of week before day of month: To specify the last day of the week 150 * occurring on or before an exact day of the month, make the day of the 151 * week and the day of the month negative. For example, if {@code startDay} is {@code -21} 166 * the daylight savings starting month. The month indexing is 0-based. eg, [all...] |
/external/clearsilver/java-jni/ |
HDF.java | 214 Integer.toString(cal.get(Calendar.MONTH)+1));
|
/libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/ |
KeyStore2Test.java | 731 int monthExpected = Calendar.getInstance().get(Calendar.MONTH); 739 int monthActual1 = Calendar.getInstance().get(Calendar.MONTH); 753 int monthActual2 = Calendar.getInstance().get(Calendar.MONTH); [all...] |