Home | History | Annotate | Download | only in calendar

Lines Matching defs:startMillis

311     public void sendEventRelatedEvent(Object sender, long eventType, long eventId, long startMillis,
317 sendEventRelatedEventWithExtra(sender, eventType, eventId, startMillis, endMillis, x, y,
328 * @param startMillis start time
337 long startMillis, long endMillis, int x, int y, long extraLong, long selectedMillis) {
345 info.startTime.set(startMillis);
441 long startMillis = 0;
443 startMillis = event.startTime.toMillis(false);
450 if (startMillis != 0) {
454 if (mtimeMillis < startMillis
467 if (startMillis == 0) {
703 private void launchCreateEvent(long startMillis, long endMillis, boolean allDayEvent) {
706 intent.putExtra(EXTRA_EVENT_BEGIN_TIME, startMillis);
713 public void launchViewEvent(long eventId, long startMillis, long endMillis, int response) {
718 intent.putExtra(EXTRA_EVENT_BEGIN_TIME, startMillis);
725 private void launchEditEvent(long eventId, long startMillis, long endMillis, boolean edit) {
728 intent.putExtra(EXTRA_EVENT_BEGIN_TIME, startMillis);
743 private void launchDeleteEvent(long eventId, long startMillis, long endMillis) {
744 launchDeleteEventAndFinish(null, eventId, startMillis, endMillis, -1);
747 private void launchDeleteEventAndFinish(Activity parentActivity, long eventId, long startMillis,
751 deleteEventHelper.delete(startMillis, endMillis, eventId, deleteWhich);