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

1 2 3

  /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/
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...]
EventGeometry.java 54 int startDay = event.startDay;
57 if (startDay > date || endDay < date) {
66 if (startDay < date) {
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/DeskClock/src/com/android/deskclock/alarms/utils/
DayOrderUtils.java 45 final int startDay = Utils.getZeroIndexedFirstDayOfWeek(context);
49 dayOrder[i] = DAY_ORDER[(startDay + i) % DaysOfWeek.DAYS_IN_A_WEEK];
  /external/icu/android_icu4j/src/main/java/android/icu/util/
SimpleTimeZone.java 79 * is, if the startDay is 1, and the startDayOfWeek is SUNDAY, then this
80 * indicates the first Sunday in the startMonth. A startDay of -1 likewise
89 * negative. For example, if startDay is 5 and startDayOfWeek is -MONDAY,
95 * week and the day of the month negative. For example, if startDay is -21
99 * The above examples refer to the startMonth, startDay, and startDayOfWeek;
107 * @param startDay The daylight savings starting
128 int startMonth, int startDay, int startDayOfWeek, int startTime,
132 startMonth, startDay, startDayOfWeek,
150 * @param startDay The daylight savings starting
174 int startMonth, int startDay,
    [all...]
  /external/icu/icu4j/main/classes/core/src/com/ibm/icu/util/
SimpleTimeZone.java 82 * is, if the startDay is 1, and the startDayOfWeek is SUNDAY, then this
83 * indicates the first Sunday in the startMonth. A startDay of -1 likewise
92 * negative. For example, if startDay is 5 and startDayOfWeek is -MONDAY,
98 * week and the day of the month negative. For example, if startDay is -21
102 * The above examples refer to the startMonth, startDay, and startDayOfWeek;
110 * @param startDay The daylight savings starting
132 int startMonth, int startDay, int startDayOfWeek, int startTime,
136 startMonth, startDay, startDayOfWeek,
154 * @param startDay The daylight savings starting
179 int startMonth, int startDay,
    [all...]
  /packages/apps/DeskClock/src/com/android/deskclock/provider/
DaysOfWeek.java 107 // startDay is stored corresponding to Calendar.DAY_OF_WEEK where Sun = 0, Mon = 2, etc.
108 final int startDay = convertDayToBitIndex(firstDay);
112 for (int bitIndex = startDay; bitIndex < DAYS_IN_A_WEEK + startDay; ++bitIndex) {
  /external/icu/icu4c/source/i18n/
simpletz.cpp 65 startDay(0),
162 this->startDay = savingsStartDay;
210 startDay = right.startDay;
311 startDay = (int8_t)dayOfWeekInMonth;
479 (int8_t)startDay, startTime);
756 startDay == that->startDay &&
792 // startDay The day of the month, or for DOW_IN_MONTH mode, a
803 // MODE startMonth startDay startDayOfWee
    [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/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/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/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) {
  /packages/apps/ContactsCommon/src/com/android/contacts/common/util/
DateUtils.java 284 int startDay = Time.getJulianDay(date1, time.gmtoff);
289 return Math.abs(currentDay - startDay);
  /external/icu/android_icu4j/src/main/tests/android/icu/dev/test/calendar/
CopticTest.java 373 private int startDay; // 1-based
382 startDay = sDa;
391 public int getStartDay() { return startDay; }
EthiopicTest.java 431 private int startDay; // 1-based
440 startDay = sDa;
449 public int getStartDay() { return startDay; }
  /external/icu/icu4j/main/tests/core/src/com/ibm/icu/dev/test/calendar/
CopticTest.java 369 private int startDay; // 1-based
378 startDay = sDa;
387 public int getStartDay() { return startDay; }
EthiopicTest.java 427 private int startDay; // 1-based
436 startDay = sDa;
445 public int getStartDay() { return startDay; }
  /packages/apps/Calendar/tests/src/com/android/calendar/
UtilsTests.java 235 Event buildTestEvent(int startTime, int endTime, boolean allDay, int startDay, int endDay) {
240 e.startDay = startDay;
242 e.startMillis = e.startDay * 1000L * 3600L * 24L + e.startTime * 60L * 1000L;
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
MetaData.java 167 * @param startDay the start of the BusyBit expansion (the start Julian day)
170 public void write(String timezone, long begin, long end, int startDay, int endDay) {
  /external/icu/icu4c/source/i18n/unicode/
simpletz.h 134 * values for startDay and startDayOfWeek and endDay and endDayOfWeek. For a
175 * values for startDay and startDayOfWeek and endDay and endDayOfWeek. For a
219 * values for startDay and startDayOfWeek and endDay and endDayOfWeek. For a
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertUtils.java 323 int startDay = Time.getJulianDay(startMillis, timeObj.gmtoff);
325 return Time.getJulianDay(endMillis, timeObj.gmtoff) - startDay;
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java     [all...]

Completed in 1977 milliseconds

1 2 3