OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ICalendar
(Results
1 - 4
of
4
) sorted by null
/cts/tests/tests/calendarcommon/src/com/android/calendarcommon2/
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
() {
/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceSetTest.java
19
import com.android.calendarcommon2.
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.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
...]
/frameworks/opt/calendar/src/com/android/calendarcommon2/
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 80 milliseconds