Home | History | Annotate | Download | only in calendar

Lines Matching refs:DESCRIPTION

123             m.put(CalendarContract.Events.DESCRIPTION, event.mDescription);
148 values.put(CalendarContract.Events.DESCRIPTION, event.mDescription);
250 boolean allDay, String description) {
258 mDescription = description;
287 public EventInfo(String title, String description, String startDate, String endDate,
289 init(title, description, startDate, endDate, rrule, allDay, DEFAULT_TIMEZONE);
293 public EventInfo(String title, String description, String startDate, String endDate,
295 init(title, description, startDate, endDate, rrule, allDay, timezone);
298 public void init(String title, String description, String startDate, String endDate,
301 mDescription = description;
331 String description, String startDate, String endDate, boolean allDay) {
333 title, description, startDate, endDate, allDay, DEFAULT_TIMEZONE);
337 String title, String description, String startDate, String endDate,
343 init(title, description, startDate, endDate, null /* rrule */, allDay, timezone);