Searched defs:startTime (Results 1 - 13 of 13) sorted by relevance

/packages/apps/Calendar/tests/src/com/android/calendar/
H A DUtilsTests.java133 Event buildTestEvent(int startTime, int endTime, boolean allDay, int startDay, int endDay) { argument
135 e.startTime = startTime;
140 e.startMillis = e.startDay * 1000L * 3600L * 24L + e.startTime * 60L * 1000L;
/packages/apps/Phone/src/com/android/phone/
H A DDataUsageListener.java148 long startTime, long endTime) {
150 mStart.setTimeInMillis(startTime);
147 updateUsageStats(long readByteCount, long writeByteCount, long startTime, long endTime) argument
/packages/providers/CalendarProvider/
H A Dmaketests.py105 startTime = w.getAttribute("startTime") variable
107 instances.append((startTime,endTime))
/packages/apps/Calendar/src/com/android/calendar/agenda/
H A DAgendaListView.java322 public boolean isEventVisible(Time startTime, long id) { argument
324 if (id == -1 || startTime == null) {
334 long milliTime = startTime.toMillis(true);
H A DAgendaByDayAdapter.java298 long startTime = cursor.getLong(AgendaWindowAdapter.INDEX_BEGIN);
303 startTime = Utils.convertAlldayUtcToLocal(tempTime, startTime, mTimeZone);
311 startTime = Math.max(startTime, adapterStartTime);
363 rowInfo.add(new RowInfo(TYPE_MEETING, startDay, position, id, startTime, endTime,
374 Utils.getNextMidnight(tempTime, startTime, mTimeZone),
432 RowInfo(int type, int julianDay, int position, long id, long startTime, long endTime, argument
438 mEventStartTimeMilli = startTime;
467 MultipleDayInfo(int position, int endDay, long id, long startTime, lon argument
[all...]
/packages/apps/Camera/src/com/android/camera/ui/
H A DIndicatorControlWheelContainer.java173 public void startTimeLapseAnimation(int timeLapseInterval, long startTime) { argument
175 timeLapseInterval, startTime);
H A DIndicatorControlWheel.java414 public void startTimeLapseAnimation(int timeLapseInterval, long startTime) { argument
416 mRecordingStartTime = startTime;
/packages/apps/Calendar/src/com/android/calendar/
H A DEvent.java124 public int startTime; // Start and end time are in minutes since midnight field in class:Event
161 e.startTime = startTime;
182 dest.startTime = startTime;
203 e.startTime = 0;
391 e.startTime = cEvents.getInt(PROJECTION_START_MINUTE_INDEX);
541 Log.e("Cal", "+ startTime = " + startTime);
565 && (startTime !
[all...]
H A DCalendarController.java158 public Time startTime; // start of a range of time. field in class:CalendarController.EventInfo
282 info.startTime = new Time(Utils.getTimeZone(mContext, mUpdateTimezone));
283 info.startTime.set(startMillis);
288 info.selectedTime = info.startTime;
327 info.startTime = start;
373 Log.e(TAG, "Start " + (event.startTime == null ? "null" : event.startTime.toString()));
380 if (event.startTime != null) {
381 startMillis = event.startTime.toMillis(false);
389 // selectedTime is not set so set mTime to startTime if
[all...]
/packages/apps/Calendar/src/com/android/calendar/event/
H A DEditEventHelper.java585 * @param startTime the start time
588 protected long constructDefaultEndTime(long startTime) { argument
589 return startTime + DateUtils.HOUR_IN_MILLIS;
955 Time startTime = new Time(model.mTimezone);
956 startTime.set(model.mStart);
958 days[0] = EventRecurrence.timeDay2Day(startTime.weekDay);
970 Time startTime = new Time(model.mTimezone);
971 startTime.set(model.mStart);
972 bymonthday[0] = startTime.monthDay;
981 Time startTime
[all...]
/packages/apps/Email/src/com/android/email/service/
H A DAttachmentDownloadService.java175 long startTime; field in class:AttachmentDownloadService.DownloadRequest
479 req.startTime = System.currentTimeMillis();
991 pw.println(" Started: " + req.startTime + ", Callback: " +
993 pw.println(" Elapsed: " + ((time - req.startTime) / 1000L) + "s");
/packages/apps/Exchange/src/com/android/exchange/adapter/
H A DCalendarSyncAdapter.java345 * @param startTime the start time for the Event
349 /*package*/ void setTimeRelatedValues(ContentValues cv, long startTime, long endTime, argument
351 // If there's no startTime, the event will be found to be invalid, so return
352 if (startTime < 0) return;
355 if (endTime < 0) endTime = startTime + (30*MINUTES);
359 startTime = CalendarUtilities.getUtcAllDayCalendarTime(startTime, mLocalTimeZone);
383 cv.put(Events.DTSTART, startTime);
387 cv.put(Events.DURATION, "P" + ((endTime - startTime) / DAYS) + "D");
390 cv.put(Events.DURATION, "P" + ((endTime - startTime) / MINUTE
814 exceptionParser(CalendarOperations ops, ContentValues parentCv, ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus, long startTime, long endTime) argument
965 exceptionsParser(CalendarOperations ops, ContentValues cv, ArrayList<ContentValues> attendeeValues, int reminderMins, int busyStatus, long startTime, long endTime) argument
[all...]
/packages/apps/Exchange/src/com/android/exchange/utility/
H A DCalendarUtilities.java330 * @param startTime the start time for the test
332 * @param startInDaylightTime whether daylight time is in effect at the startTime
335 static GregorianCalendar findTransitionDate(TimeZone tz, long startTime, argument
341 while ((endTime - startTime) > MINUTES) {
342 long checkTime = ((startTime + endTime) / 2) + 1;
348 startTime = checkTime;
359 calendar.setTimeInMillis(startTime);
545 long startTime = cal.getTimeInMillis();
547 long endOfYearTime = startTime + (365*DAYS) + (DAYS>>2);
548 Date date = new Date(startTime);
1169 recurrenceFromRrule(String rrule, long startTime, Serializer s) argument
[all...]

Completed in 3424 milliseconds