Home | History | Annotate | Download | only in calendar

Lines Matching refs:Time

39 import android.text.format.Time;
87 private final Time mTime = new Time();
158 public Time selectedTime; // the selected time in focus
161 // - local time for GO_TO commands
162 // - UTC time for VIEW_EVENT and other event-related commands
163 public Time startTime;
164 public Time endTime;
185 * Set to {@link #EXTRA_GOTO_TIME} to go to the specified date/time.
186 * Set to {@link #EXTRA_GOTO_DATE} to consider the date but ignore the time.
188 * Set to {@link #EXTRA_GOTO_TODAY} if this is a user request to go to the current time.
258 * Pass to the ExtraLong parameter for EventType.GO_TO to signal the time
335 * @param startMillis start time
336 * @param endMillis end time
341 * @param selectedMillis The time to specify as selected
355 * @param startMillis start time
356 * @param endMillis end time
361 * @param selectedMillis The time to specify as selected
375 info.startTime = new Time(Utils.getTimeZone(mContext, mUpdateTimezone));
378 info.selectedTime = new Time(Utils.getTimeZone(mContext, mUpdateTimezone));
383 info.endTime = new Time(Utils.getTimeZone(mContext, mUpdateTimezone));
397 * @param start start time
398 * @param end end time
402 public void sendEvent(Object sender, long eventType, Time start, Time end, long eventId,
411 public void sendEvent(Object sender, long eventType, Time start, Time end, long eventId,
417 public void sendEvent(Object sender, long eventType, Time start, Time end, Time selected,
498 // Fix up start time if not specified
684 * @return the time that this controller is currently pointed at
699 * Set the time this controller is currently pointed at
701 * @param millisTime Time since epoch in millis
841 tmp = "Go to time/event";