HomeSort by relevance Sort by last modified time
    Searched refs:MONTH (Results 76 - 100 of 111) sorted by null

1 2 34 5

  /external/v8/src/
dateparser.h 43 // [1]: month (0 = Jan, 1 = Feb, ...)
55 YEAR, MONTH, DAY, HOUR, MINUTE, SECOND, MILLISECOND, UTC_OFFSET, OUTPUT_SIZE
  /frameworks/base/telephony/java/com/android/internal/telephony/cat/
ResponseData.java 225 // Fill month byte
226 data[2] = byteToBCD(calendar.get(java.util.Calendar.MONTH) + 1);
  /frameworks/opt/calendar/src/com/android/calendarcommon/
RecurrenceProcessor.java 204 iterator.month + 1);
321 * Compute the day of the week for the first day of the month. "instance" has a
326 * (day of the month - 1) mod 7, and then make sure it's positive. We can simplify
341 * Generate a set according to the BYDAY rules. For each day of the month, determine
349 // For each month day, see if it's part of the set. (This makes some assumptions
433 int realMonth = iterator.month;
439 + " " + iterator.month
444 // if might be past the end of the month, we need to normalize it
449 realMonth = t.month;
452 Log.i(TAG, "normalized t=" + t + " " + t.month
890 int month = usebymonth local
1141 int month = date.month; local
    [all...]
  /libcore/luni/src/main/java/java/util/zip/
ZipEntry.java 283 modDate = (cal.get(Calendar.MONTH) + 1 << 5) | modDate;
  /libcore/luni/src/main/java/java/util/
SimpleTimeZone.java 31 * {@code SimpleTimeZone} should count from the end of the month
102 * By default, this constructor specifies day-of-week-in-month rules. That
108 * Day of month: To specify an exact day of the month, such as March 1, set
111 * Day of week after day of month: To specify the first day of the week
112 * occurring on or after an exact day of the month, make the day of the week
117 * Day of week before day of month: To specify the last day of the week
118 * occurring on or before an exact day of the month, make the day of the
119 * week and the day of the month negative. For example, if {@code startDay} is {@code -21}
134 * the daylight savings starting month. The month indexing is 0-based. eg,
    [all...]
Formatter.java 340 * <td width="25%">Localized month name (abbreviated).</td>
346 * <td width="25%">Localized month name (full).</td>
364 * <td width="25%">2-digit day of month (01-31).</td>
376 * <td width="25%">Day of month (1-31).</td>
430 * <td width="25%">2-digit month of year (01-12).</td>
    [all...]
  /external/jsilver/src/org/clearsilver/jni/
JniHdf.java 239 Integer.toString(cal.get(Calendar.MONTH)+1));
  /packages/apps/Calendar/src/com/android/calendar/
CalendarViewAdapter.java 50 // Week view: show the month + year
51 // Month view: show the month + year
191 case ViewType.MONTH:
260 // Used when the user selects a new day/week/month to watch
296 // Full date: Month,day Year
297 // Month year
298 // Month day
299 // Month
300 // Week: month day-day or month day - month da
    [all...]
CalendarController.java 141 * One of the Agenda/Day/Week/Month view types
149 final int MONTH = 4;
    [all...]
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStore2Test.java 681 int monthExpected = Calendar.getInstance().get(Calendar.MONTH);
688 int monthActual1 = Calendar.getInstance().get(Calendar.MONTH);
702 int monthActual2 = Calendar.getInstance().get(Calendar.MONTH);
    [all...]
  /external/icu4c/i18n/unicode/
calendar.h 54 * <code>YEAR</code>, <code>MONTH</code>, <code>DAY</code>, <code>HOUR</code>,
90 * <code>UDate</code> (such as only year and month but no day in the month),
98 * start of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc.
109 * MONTH + DAY_OF_MONTH
110 * MONTH + WEEK_OF_MONTH + DAY_OF_WEEK
111 * MONTH + DAY_OF_WEEK_IN_MONTH + DAY_OF_WEEK
130 * month, day-of-month <em>and</em> day-of-week in some cases.
154 * month up in the date <code>December 12, <b>1996</b></code> results i
    [all...]
  /frameworks/base/obex/javax/obex/
ObexHelper.java 247 temp.set(Calendar.MONTH, Integer.parseInt(dateString.substring(
438 temp = dateHeader.get(Calendar.MONTH);
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 214 assertEquals(cal.get(Calendar.MONTH), 1); // 0 based
229 assertEquals(cal.get(Calendar.MONTH), 1); // 0 based
669 // The last Saturday of the month
673 // The third Wednesday and Thursday of the month
683 // The 14th of the every month
    [all...]
  /frameworks/base/core/java/android/text/format/
DateUtils.java 195 * This is not actually a useful month name in all locales.
232 // used for formatting a start and end date that fall in the same month.
340 * Return a localized string for the month of the year.
341 * @param month One of {@link Calendar#JANUARY Calendar.JANUARY},
347 * @return Localized month of the year.
349 public static String getMonthString(int month, int abbrev) {
365 return r.getString(list[month - Calendar.JANUARY]);
369 * Return a localized string for the month of the year, for
370 * contexts where the month is not formatted together with
371 * a day of the month
    [all...]
  /external/webkit/Source/JavaScriptCore/tests/mozilla/ecma/
shell.js 259 * year-month-day mode: dt = new Date(2000, 5, 1, ...);
279 ResultArray[MONTH] = MonthFromTime(t);
426 var month = MonthFromTime(t);
428 if ( month == 0 ) {
431 if ( month == 1 ) {
434 if ( month == 2 ) {
437 if ( month == 3 ) {
440 if ( month == 4 ) {
443 if ( month == 5 ) {
446 if ( month == 6 )
    [all...]
  /frameworks/base/services/java/com/android/server/am/
UsageStatsService.java 291 int mm = mCal.get(Calendar.MONTH) - Calendar.JANUARY +1;
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 1254 int month = Integer.parseInt(nitzSubs[1]) - 1; local
    [all...]
  /frameworks/base/telephony/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 1319 int month = Integer.parseInt(nitzSubs[1]) - 1; local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncAdapter.java     [all...]
  /packages/apps/Contacts/src/com/android/contacts/model/
EntityModifier.java 1261 final int month = calendar.get(Calendar.MONTH); local
    [all...]
  /external/icu4c/test/intltest/
calregts.cpp 93 "MONTH",
297 logln(UnicodeString("MONTH: ") + calendar->get(UCAL_MONTH, status));
304 //This will print out todays date for MONTH and DAY_OF_MONTH
307 logln(UnicodeString("MONTH: ") + calendar->get(UCAL_MONTH, status));
355 logln("MONTH: " + Calendar::get(Calendar::MONTH));
382 logln("MONTH: " + Calendar::get(Calendar::MONTH));
501 //cal.add(field, amount); //<-- PROBLEM SEEN WITH field = DATE,MONTH
761 cal1.set( Calendar::MONTH, 10 );
815 int32_t sec = 0, min = 0, hr = 0, day = 1, month = 10, year = 1997; local
2403 int32_t month = cal->get(UCAL_MONTH, status); local
    [all...]
caltest.cpp 506 cal->roll(Calendar::MONTH, (int32_t)100, status);
529 int32_t year = 1997, month = UCAL_APRIL, date = 1;
530 gc->set(year, month, date);
538 gc->get(UCAL_MONTH, status) != month ||
744 CalendarTest::verify765(const UnicodeString& msg, Calendar* c, int32_t year, int32_t month, int32_t day)
752 m == month &&
759 errln("FAIL: " + msg + dateToString(c->getTime(status), str) + "; expected " + (int32_t)year + "/" + (int32_t)(month + 1) + "/" + (int32_t)day +
1244 int32_t month = UCAL_OCTOBER; local
    [all...]
  /external/e2fsprogs/
configure     [all...]
  /external/jdiff/
xerces.jar 
  /prebuilt/sdk/6/
android.jar 

Completed in 6351 milliseconds

1 2 34 5