HomeSort by relevance Sort by last modified time
    Searched defs:startDay (Results 1 - 25 of 72) sorted by null

1 2 3

  /packages/apps/Dialer/java/com/android/contacts/common/util/
DateUtils.java 35 int startDay = Time.getJulianDay(date1, time.gmtoff);
40 return Math.abs(currentDay - startDay);
  /external/icu/icu4c/source/i18n/unicode/
simpletz.h 136 * values for startDay and startDayOfWeek and endDay and endDayOfWeek. For a
177 * values for startDay and startDayOfWeek and endDay and endDayOfWeek. For a
221 * values for startDay and startDayOfWeek and endDay and endDayOfWeek. For a
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
EventGeometry.java 54 int startDay = event.startDay;
57 if (startDay > date || endDay < date) {
66 if (startDay < date) {
EventLoader.java 63 public int startDay;
72 CalendarContract.EventDays.STARTDAY, CalendarContract.EventDays.ENDDAY
75 public LoadEventDaysRequest(int startDay, int numDays, boolean[] eventDays,
78 this.startDay = startDay;
94 Cursor cursor = EventDays.query(cr, startDay, numDays, PROJECTION);
96 int startDayColumnIndex = cursor.getColumnIndexOrThrow(EventDays.STARTDAY);
104 int firstIndex = Math.max(firstDay - startDay, 0);
105 int lastIndex = Math.min(lastDay - startDay, 30);
127 public int startDay;
    [all...]
Event.java 48 * 1) events with an earlier start (begin for normal events, startday for allday)
59 "startDay ASC, endDay DESC, title ASC";
128 public int startDay; // start Julian day
165 e.startDay = startDay;
186 dest.startDay = startDay;
207 e.startDay = 0;
221 * Loads <i>days</i> days worth of instances starting at <i>startDay</i>.
223 public static void loadEvents(Context context, ArrayList<Event> events, int startDay, int days
    [all...]
Utils.java 631 int startDay;
633 startDay = Calendar.getInstance().getFirstDayOfWeek();
635 startDay = Integer.parseInt(pref);
638 if (startDay == Calendar.SATURDAY) {
640 } else if (startDay == Calendar.MONDAY) {
    [all...]
  /packages/apps/Contacts/src/com/android/contacts/interactions/
CalendarInteractionUtils.java 137 int startDay = Time.getJulianDay(startMillis, localGmtOffset);
139 return startDay == endDay;
147 int startDay = Time.getJulianDay(dayMillis, localGmtOffset);
150 int days = startDay - currentDay;
  /packages/apps/Calendar/src/com/android/calendar/widget/
CalendarAppWidgetModel.java 290 final int startDay = cursor.getInt(CalendarAppWidgetService.INDEX_START_DAY);
314 mEventInfos.add(populateEventInfo(eventId, allDay, start, end, startDay, endDay, title,
317 int from = Math.max(startDay, mTodayJulianDay);
355 int startDay, int endDay, String title, String location, int color, int selfStatus) {
371 if (endDay > startDay) {
  /external/icu/android_icu4j/src/main/java/android/icu/util/
SimpleTimeZone.java 81 * is, if the startDay is 1, and the startDayOfWeek is SUNDAY, then this
82 * indicates the first Sunday in the startMonth. A startDay of -1 likewise
91 * negative. For example, if startDay is 5 and startDayOfWeek is -MONDAY,
97 * week and the day of the month negative. For example, if startDay is -21
101 * The above examples refer to the startMonth, startDay, and startDayOfWeek;
109 * @param startDay The daylight savings starting
130 int startMonth, int startDay, int startDayOfWeek, int startTime,
134 startMonth, startDay, startDayOfWeek,
152 * @param startDay The daylight savings starting
176 int startMonth, int startDay,
    [all...]
VTimeZone.java     [all...]
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
CopticTest.java 384 private int startDay; // 1-based
393 startDay = sDa;
402 public int getStartDay() { return startDay; }
EthiopicTest.java 441 private int startDay; // 1-based
450 startDay = sDa;
459 public int getStartDay() { return startDay; }
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
SimpleTimeZone.java 84 * is, if the startDay is 1, and the startDayOfWeek is SUNDAY, then this
85 * indicates the first Sunday in the startMonth. A startDay of -1 likewise
94 * negative. For example, if startDay is 5 and startDayOfWeek is -MONDAY,
100 * week and the day of the month negative. For example, if startDay is -21
104 * The above examples refer to the startMonth, startDay, and startDayOfWeek;
112 * @param startDay The daylight savings starting
134 int startMonth, int startDay, int startDayOfWeek, int startTime,
138 startMonth, startDay, startDayOfWeek,
156 * @param startDay The daylight savings starting
181 int startMonth, int startDay,
    [all...]
VTimeZone.java     [all...]
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
CopticTest.java 381 private int startDay; // 1-based
390 startDay = sDa;
399 public int getStartDay() { return startDay; }
EthiopicTest.java 438 private int startDay; // 1-based
447 startDay = sDa;
456 public int getStartDay() { return startDay; }
  /libcore/ojluni/src/main/java/java/util/
SimpleTimeZone.java 177 * startDay,
194 * @param startDay The day of the month on which the daylight saving time starts.
215 int startMonth, int startDay, int startDayOfWeek, int startTime,
219 startMonth, startDay, startDayOfWeek, startTime, WALL_TIME,
234 * startDay,
251 * @param startDay The day of the month on which the daylight saving time starts.
273 int startMonth, int startDay, int startDayOfWeek, int startTime,
278 startMonth, startDay, startDayOfWeek, startTime, WALL_TIME,
298 * @param startDay The day of the month on which the daylight saving time starts.
329 int startMonth, int startDay, int startDayOfWeek
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/agenda/
AgendaByDayAdapter.java 310 int startDay = cursor.getInt(AgendaWindowAdapter.INDEX_START_DAY);
321 startDay = Math.max(startDay, dayAdapterInfo.start);
324 long adapterStartTime = tempTime.setJulianDay(startDay);
327 if (startDay != prevStartDay) {
330 rowInfo.add(new RowInfo(TYPE_DAY, startDay));
336 for (int currentDay = prevStartDay + 1; currentDay <= startDay; currentDay++) {
370 rowInfo.add(new RowInfo(TYPE_DAY, startDay));
373 prevStartDay = startDay;
382 if (endDay > startDay) {
    [all...]
AgendaWindowAdapter.java 305 int startDay;
584 * @param returnEventStartDay If true, return actual event startday. Otherwise
585 * return agenda date-header date as the startDay.
616 item.startDay = info.dayAdapter.findJulianDayFromPosition(positionInAdapter -
634 agendaItem.startDay = cursor.getInt(AgendaWindowAdapter.INDEX_START_DAY);
698 int startDay = Time.getJulianDay(goToTime.toMillis(false), goToTime.gmtoff);
700 if (!forced && isInRange(startDay, startDay)) {
740 int endDay = startDay + MIN_QUERY_DURATION;
744 queueQuery(startDay, endDay, goToTime, searchQuery, QUERY_TYPE_CLEAN, id)
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/month/
MonthByWeekAdapter.java 159 int startDay = event.startDay - mFirstJulianDay;
161 if (startDay < numDays || endDay >= 0) {
162 if (startDay < 0) {
163 startDay = 0;
165 if (startDay > numDays) {
174 for (int j = startDay; j < endDay; j++) {
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarInstancesHelper.java     [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java     [all...]
  /external/icu/icu4c/source/i18n/
vtzone.cpp     [all...]
  /external/icu/icu4c/source/test/intltest/
calregts.cpp     [all...]
  /packages/apps/TV/tuner/src/com/android/tv/tuner/ts/
SectionParser.java     [all...]

Completed in 874 milliseconds

1 2 3