Home | History | Annotate | Download | only in agenda

Lines Matching defs:goToTime

238         Time goToTime;
261 if (goToTime != null) {
262 long goToTimeMillis = goToTime.toMillis(false);
281 if (goToTime != null) {
282 if (goToTime.toMillis(false) != other.goToTime.toMillis(false)) {
286 if (other.goToTime != null) {
685 public void refresh(Time goToTime, long id, String searchQuery, boolean forced,
692 Log.e(TAG, this + ": refresh " + goToTime.toString() + " id " + id
698 int startDay = Time.getJulianDay(goToTime.toMillis(false), goToTime.gmtoff);
702 if (!mAgendaListView.isAgendaItemVisible(goToTime, id)) {
703 int gotoPosition = findEventPositionNearestTime(goToTime, id);
723 sendViewEvent(item, goToTime.toMillis(false));
730 actualTime.set(goToTime);
744 queueQuery(startDay, endDay, goToTime, searchQuery, QUERY_TYPE_CLEAN, id);
747 // Queuing more data with the goToTime set to the selected time skips the call to
750 queueQuery(0, 0, goToTime, searchQuery, QUERY_TYPE_OLDER, id);
752 queueQuery(0, 0, goToTime, searchQuery, QUERY_TYPE_NEWER, id);
857 private boolean queueQuery(int start, int end, Time goToTime,
860 queryData.goToTime = new Time(goToTime); // Creates a new time reference per QuerySpec.
927 + time2.toString() + " then go to " + queryData.goToTime);
998 if (data.goToTime == null) { // Typical Scrolling type query
1004 final Time goToTime = data.goToTime;
1006 newPosition = findEventPositionNearestTime(goToTime, data.id);
1014 actualTime.set(goToTime);
1032 if (data.id != -1 || data.goToTime != null) {