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

1 2 34 5 6

  /frameworks/opt/datetimepicker/src/com/android/datetimepicker/date/
DayPickerView.java 49 // Affects when the month selection will change while scrolling up
83 // which month should be displayed/highlighted [0-11]
165 * in range it will move the list so that the first of the month containing
187 * SimpleMonthAdapter.MONTHS_IN_YEAR + day.month;
220 // and if so scroll to the month that contains it
250 * Updates the title and selected month if the view has moved to a new
251 * month.
268 * Sets the month displayed at the top of this view based on time. Override
272 mCurrentMonthDisplayed = date.month;
442 cal.set(day.year, day.month, day.day)
475 int month = firstVisiblePosition % 12; local
    [all...]
SimpleMonthView.java 51 * A calendar-like view displaying a specified month and the appropriate selectable day numbers
52 * within the specified month.
70 public static final String VIEW_PARAMS_MONTH = "month";
92 * Which month is currently in focus, as defined by {@link Time#month}
97 * If this month should display week numbers. false if 0, true otherwise.
140 // The month of the first day in this week
142 // The month of the last day in this week
317 * will only update if a new value is included, except for focus month,
318 * which will always default to no focus month if no value is passed in. Se
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSync.java 225 sb.append(String.format(Locale.US, "%02d", calendar.get(Calendar.MONTH) + 1));
  /libcore/luni/src/test/java/org/apache/harmony/security/tests/java/security/
KeyStore2Test.java 682 int monthExpected = Calendar.getInstance().get(Calendar.MONTH);
689 int monthActual1 = Calendar.getInstance().get(Calendar.MONTH);
703 int monthActual2 = Calendar.getInstance().get(Calendar.MONTH);
    [all...]
  /libcore/luni/src/main/java/java/util/
Formatter.java 338 * <td width="25%">Localized month name (abbreviated).</td>
344 * <td width="25%">Localized month name (full).</td>
362 * <td width="25%">2-digit day of month (01-31).</td>
374 * <td width="25%">Day of month (1-31).</td>
428 * <td width="25%">2-digit month of year (01-12).</td>
    [all...]
  /external/chromium_org/third_party/icu/source/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...]
  /external/icu4c/i18n/unicode/
calendar.h 55 * <code>YEAR</code>, <code>MONTH</code>, <code>DAY</code>, <code>HOUR</code>,
91 * <code>UDate</code> (such as only year and month but no day in the month),
100 * start of the epoch: i.e., YEAR = 1970, MONTH = JANUARY, DATE = 1, etc.
111 * MONTH + DAY_OF_MONTH
112 * MONTH + WEEK_OF_MONTH + DAY_OF_WEEK
113 * MONTH + DAY_OF_WEEK_IN_MONTH + DAY_OF_WEEK
152 * month, day-of-month <em>and</em> day-of-week in some cases.
176 * month up in the date <code>December 12, <b>1996</b></code> results i
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 51 time.month = other.month;
111 c.get(Calendar.MONTH),
123 public void set(int second, int minute, int hour, int monthDay, int month, int year) {
128 time.month = month;
137 public void set(int monthDay, int month, int year) {
138 set(0, 0, 0, monthDay, month, year);
152 time.month = 0;
260 c.set(time.year, time.month, time.monthDay, time.hour, time.minute, time.second)
    [all...]
  /external/xmp_toolkit/XMPCore/src/com/adobe/xmp/impl/
XMPNormalizer.java 477 cal.set(Calendar.MONTH, binOtherDate.getMonth());
  /frameworks/base/core/java/android/text/format/
DateFormat.java 101 public static final char MONTH = 'M';
187 * {@code ja_JP} where there is only one length of month.
253 int month = value.indexOf('M'); local
257 if (month >= 0 && day >= 0 && year >= 0) {
259 if (year < month && year < day) {
260 if (month < day) {
265 } else if (month < day) {
271 } else { // day < month
272 if (month < year) {
310 * 3 elements ({@link #DATE}, {@link #MONTH}, and {@link #YEAR}) in the orde
    [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 224 assertEquals(cal.get(Calendar.MONTH), 1); // 0 based
239 assertEquals(cal.get(Calendar.MONTH), 1); // 0 based
679 // The last Saturday of the month
683 // The third Wednesday and Thursday of the month
    [all...]
  /prebuilts/tools/common/m2/internal/com/google/code/findbugs/jFormatString/2.0.1/
jFormatString-2.0.1.jar 
  /external/chromium_org/chrome/browser/resources/history/
history.js 451 MONTH: 2
602 * that ended 7 days ago, etc. For MONTH an offset of 0 refers to the current
603 * calendar month, 1 to the previous one, etc.
796 $('timeframe-filter-month').addEventListener('change', handleRangeChange);
    [all...]
  /external/antlr/antlr-3.4/tool/src/main/java/org/antlr/
Tool.java     [all...]
  /external/chromium_org/chrome/browser/ui/webui/
history_ui.cc 212 while (exploded->month < 1) {
213 exploded->month += 12;
490 // month, set by the next argument).
509 if (range == BrowsingHistoryHandler::MONTH)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarController.java 133 * One of the Agenda/Day/Week/Month view types
141 final int MONTH = 4;
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
org.eclipse.equinox.app_1.3.1.R36x_v20100803.jar 
  /frameworks/base/services/java/com/android/server/am/
UsageStatsService.java 321 int mm = mCal.get(Calendar.MONTH) - Calendar.JANUARY +1;
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/cdma/
CdmaServiceStateTracker.java 1329 int month = Integer.parseInt(nitzSubs[1]) - 1; local
    [all...]
  /frameworks/opt/telephony/src/java/com/android/internal/telephony/gsm/
GsmServiceStateTracker.java 1505 int month = Integer.parseInt(nitzSubs[1]) - 1; local
    [all...]
  /libcore/luni/src/test/java/libcore/java/security/cert/
X509CertificateTest.java 423 cal.add(Calendar.MONTH, -6);
    [all...]
  /packages/apps/ContactsCommon/src/com/android/contacts/common/model/
RawContactModifier.java 1291 final int month = calendar.get(Calendar.MONTH); local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
EmailSyncAdapter.java     [all...]
  /external/chromium_org/third_party/icu/source/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...]

Completed in 1204 milliseconds

1 2 34 5 6