HomeSort by relevance Sort by last modified time
    Searched refs:timeObj (Results 1 - 2 of 2) sorted by null

  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertUtils.java 281 Time timeObj = new Time();
299 int ageInDays = getIntervalInDays(alertTime, nowTime, timeObj);
305 int ageInDays = getIntervalInDays(alertTime, nowTime, timeObj);
318 private static int getIntervalInDays(long startMillis, long endMillis, Time timeObj) {
319 timeObj.set(startMillis);
320 int startDay = Time.getJulianDay(startMillis, timeObj.gmtoff);
321 timeObj.set(endMillis);
322 return Time.getJulianDay(endMillis, timeObj.gmtoff) - startDay;
AlarmScheduler.java 191 Time timeObj = new Time();
207 localStartTime = Utils.convertAlldayUtcToLocal(timeObj, begin,
223 timeObj.set(localStartTime);
228 msg.append(" (").append(timeObj.format("%a, %b %d, %Y %I:%M%P")).append(")");
259 timeObj.set(alarmTime);
265 msg.append(" (").append(timeObj.format("%a, %b %d, %Y %I:%M%P"))

Completed in 6916 milliseconds