HomeSort by relevance Sort by last modified time
    Searched defs:ICalendar (Results 1 - 3 of 3) sorted by null

  /frameworks/opt/calendar/tests/src/com/android/calendarcommon/
RecurrenceSetTest.java 19 import com.android.calendarcommon.ICalendar;
132 throws ICalendar.FormatException {
133 ICalendar.Component recurrenceComponent =
134 new ICalendar.Component("DUMMY", null /* parent */);
135 ICalendar.parseComponent(recurrenceComponent, recurrence);
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
ICalendarTest.java 4 import com.android.calendarcommon.ICalendar;
15 ICalendar.Property prop = new ICalendar.Property("prop1", "value1");
17 prop.addParameter(new ICalendar.Parameter("param1", "foo"));
19 prop.addParameter(new ICalendar.Parameter("param1", "bar"));
21 prop.addParameter(new ICalendar.Parameter("param2", "baaz"));
23 prop.addParameter(new ICalendar.Parameter("param1", "quux"));
25 prop.addParameter(new ICalendar.Parameter("param3", "accent"));
39 ICalendar.Component component = new ICalendar.Component("DUMMY", null)
    [all...]
  /frameworks/opt/calendar/src/com/android/calendarcommon/
ICalendar.java 28 * Parses RFC 2445 iCalendar objects.
30 public class ICalendar {
39 * Exception thrown when an iCalendar object has invalid syntax.
56 * A component within an iCalendar (VEVENT, VTODO, VJOURNAL, VFEEBUSY,
221 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.,
354 * A parameter defined for an iCalendar property.
401 private ICalendar() {
420 * Parses text into an iCalendar component. Parses into the provided
453 // to be emitting some misformatted iCalendar objects.
604 * Parses the provided text into an iCalendar object. The top-leve
    [all...]

Completed in 1008 milliseconds