Searched refs:timeObj (Results 1 - 2 of 2) sorted by relevance

/packages/apps/Calendar/src/com/android/calendar/alerts/
H A DAlertUtils.java281 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) { argument
319 timeObj.set(startMillis);
320 int startDay = Time.getJulianDay(startMillis, timeObj.gmtoff);
321 timeObj.set(endMillis);
322 return Time.getJulianDay(endMillis, timeObj.gmtoff) - startDay;
H A DAlarmScheduler.java191 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 45 milliseconds