HomeSort by relevance Sort by last modified time
    Searched refs:weekDay (Results 1 - 25 of 36) sorted by null

1 2

  /packages/apps/Calendar/src/com/android/calendar/
CalendarViewAdapter.java 179 TextView weekDay = (TextView) v.findViewById(R.id.top_button_weekday);
184 weekDay.setVisibility(View.VISIBLE);
185 weekDay.setText(buildDayOfWeek());
190 weekDay.setVisibility(View.VISIBLE);
191 weekDay.setText(buildWeekNum());
193 weekDay.setVisibility(View.GONE);
198 weekDay.setVisibility(View.GONE);
202 weekDay.setVisibility(View.VISIBLE);
203 weekDay.setText(buildDayOfWeek());
391 int dayOfWeek = t.weekDay;
    [all...]
EventRecurrenceFormatter.java 97 int day = EventRecurrence.timeDay2Day(recurrence.startDate.weekDay);
106 int weekday = recurrence.startDate.weekDay; local
108 cacheMonthRepeatStrings(r, weekday);
113 sb.append(mMonthRepeatByDayOfWeekStrs[weekday][dayNumber]);
127 private static void cacheMonthRepeatStrings(Resources r, int weekday) {
141 if (mMonthRepeatByDayOfWeekStrs[weekday] == null) {
142 mMonthRepeatByDayOfWeekStrs[weekday] =
143 r.getStringArray(mMonthRepeatByDayOfWeekIds[weekday]);
Utils.java 553 * @return the string containing the weekday and the date
    [all...]
DayView.java     [all...]
  /frameworks/base/core/java/android/text/format/
Time.java 113 public int weekDay;
213 * to April 1. It also fills in weekDay, yearDay, isDst and gmtoff.
309 this.weekDay = 0;
381 * <code>allDay</code> is set to false. The fields <code>weekDay</code>,
478 weekDay = 0;
666 this.weekDay = 0;
777 this.weekDay = that.weekDay;
784 * Sets the fields. Sets weekDay, yearDay and gmtoff to 0, and isDst to -1.
795 this.weekDay = 0
    [all...]
DateUtils.java 707 * If FORMAT_SHOW_WEEKDAY is set, then the weekday is shown.
777 * If FORMAT_ABBREV_WEEKDAY is set, then the weekday (if shown) is
785 * If FORMAT_ABBREV_ALL is set, then the weekday and the month (if shown)
    [all...]
  /frameworks/ml/bordeaux/service/src/android/bordeaux/services/
TimeStatsAggregator.java 40 static final String WEEKDAY = "Weekday";
161 features.put(TIME_OF_WEEK, WEEKDAY);
165 features.put(DAY_OF_WEEK, getDayOfWeek(time.weekDay));
166 if (time.weekDay == Time.SUNDAY || time.weekDay == Time.SATURDAY ||
167 (time.weekDay == Time.FRIDAY &&
171 features.put(TIME_OF_WEEK, WEEKDAY);
  /external/chromium_org/third_party/WebKit/Source/platform/
DateComponents.h 77 int weekDay() const;
DateComponents.cpp 82 int DateComponents::weekDay() const
  /libcore/luni/src/main/java/libcore/util/
ZoneInfo.java 357 private int weekDay;
    [all...]
  /external/robolectric/src/main/java/com/xtremelabs/robolectric/shadows/
ShadowTime.java 53 time.weekDay = other.weekDay;
130 time.weekDay = 0;
154 time.weekDay = 0;
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceProcessor.java 246 int v = EventRecurrence.timeDay2Day(iterator.weekDay);
329 int dotw = (instance.weekDay - instance.monthDay + 36) % 7;
514 first = generated.weekDay;
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
SimpleWeekView.java 264 if (time.weekDay != mWeekStart) {
265 int diff = time.weekDay - mWeekStart;
SimpleWeeksAdapter.java 92 // When the week starts; numbered like Time.<WEEKDAY> (e.g. SUNDAY=0).
229 selectedDay = mSelectedDay.weekDay;
MonthByWeekAdapter.java 232 selectedDay = mSelectedDay.weekDay;
  /external/chromium_org/third_party/WebKit/Source/platform/mhtml/
MHTMLArchive.cpp 132 String dateString = makeRFC2822DateString(now.weekDay(), now.monthDay(), now.month(), now.fullYear(), now.hour(), now.minute(), now.second(), 0);
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetProvider.java 137 final String dayOfWeek = DateUtils.getDayOfWeekString(time.weekDay + 1,
  /external/robolectric/src/test/java/com/xtremelabs/robolectric/shadows/
TimeTest.java 96 assertEquals(0, t.weekDay);
  /cts/tests/tests/text/src/android/text/format/cts/
TimeTest.java 118 assertEquals(time.weekDay, anotherTime.weekDay);
600 assertEquals(0, t.weekDay);
782 // Set fields like weekday.
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java     [all...]
  /packages/apps/Calendar/src/com/android/calendar/recurrencepicker/
RecurrencePickerDialog.java 643 mModel.weeklyByDayOfWeek[mTime.weekDay] = true;
651 mModel.weeklyByDayOfWeek[mTime.weekDay] = true;
    [all...]
  /packages/apps/Settings/src/com/android/settings/widget/
ChartDataUsageView.java 449 time.monthDay -= time.weekDay - FIRST_DAY_OF_WEEK;
  /frameworks/base/services/core/java/com/android/server/content/
SyncManager.java     [all...]
  /external/chromium_org/third_party/WebKit/Source/web/resources/
calendarPicker.js 36 var WeekDay = {
53 weekStartDay: WeekDay.Sunday,
336 * @return {!WeekDay}
338 Day.prototype.weekDay = function() {
358 weekday: "long", year: "numeric", month: "long", day: "numeric", timeZone: "UTC"
    [all...]
  /external/chromium_org/third_party/libaddressinput/src/java/
android.jar 

Completed in 1703 milliseconds

1 2