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

  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
ICalendarTest.java 4 import com.android.calendarcommon2.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...]
RecurrenceSetTest.java 19 import com.android.calendarcommon2.ICalendar;
105 ICalendar.Component component = new ICalendar.Component(MOCK_COMPONENT_NAME, null);
113 List<ICalendar.Property> list = component.getProperties("DTSTART");
121 component = new ICalendar.Component(MOCK_COMPONENT_NAME, null);
134 component = new ICalendar.Component(MOCK_COMPONENT_NAME, null);
  /cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
RecurrenceSet.java 31 public static void addPropertiesForRuleStr(ICalendar.Component component,
34 component.addProperty(new ICalendar.Property(CTS_PROPERTY_NAME));
ICalendar.java 28 * Stub version of the ICalendar class, containing the subclasses for
31 public class ICalendar {
36 * A component within an iCalendar (VEVENT, VTODO, VJOURNAL, VFEEBUSY,
78 * A property within an iCalendar component (e.g., DTSTART, DTEND, etc.,
101 private ICalendar() {
  /cts/tests/tests/calendarcommon/src/android/calendarcommon2/cts/
Calendarcommon2Test.java 22 import com.android.calendarcommon2.ICalendar;
37 ICalendar.Component component = new ICalendar.Component("CTS", null);
38 List<ICalendar.Property> properties =
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceSet.java 179 * EXRULE, and EXDATE values extracted from the parsed iCalendar component.
180 * @param component The iCalendar component containing the desired
188 public static boolean populateContentValues(ICalendar.Component component,
191 ICalendar.Property dtstartProperty =
194 ICalendar.Parameter tzidParam =
255 ICalendar.Component component) {
287 ICalendar.Property dtstartProp = new ICalendar.Property("DTSTART");
291 dtstartProp.addParameter(new ICalendar.Parameter("TZID", tzid));
303 dtstartProp.addParameter(new ICalendar.Parameter("VALUE", "DATE"))
    [all...]
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...]
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceSetTest.java 19 import com.android.calendarcommon2.ICalendar;
240 throws ICalendar.FormatException {
241 ICalendar.Component recurrenceComponent =
242 new ICalendar.Component("DUMMY", null /* parent */);
243 ICalendar.parseComponent(recurrenceComponent, recurrence);

Completed in 1590 milliseconds