OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:RecurrenceSet
(Results
1 - 3
of
3
) sorted by null
/frameworks/opt/calendar/tests/src/com/android/calendarcommon/
RecurrenceSetTest.java
20
import com.android.calendarcommon.
RecurrenceSet
;
29
* Test some pim.
RecurrenceSet
functionality.
114
RecurrenceSet
.populateContentValues(recurrenceComponent, values);
/packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
RecurrenceSetTest.java
20
import com.android.calendarcommon.
RecurrenceSet
;
82
RecurrenceSet
.fold(RRULE_LESS_THAN_75_CHARS));
85
RecurrenceSet
.fold(RRULE_MORE_THAN_75_CHARS));
88
RecurrenceSet
.fold(STRING_WITH_160_CHARS));
94
RecurrenceSet
.unfold(RRULE_LESS_THAN_75_CHARS));
97
RecurrenceSet
.unfold(RRULE_MORE_THAN_75_CHARS_FOLDED));
100
RecurrenceSet
.unfold(STRING_WITH_160_CHARS_FOLDED));
112
assertTrue(
RecurrenceSet
.populateComponent(values, component));
128
assertTrue(
RecurrenceSet
.populateComponent(values, component));
141
assertTrue(
RecurrenceSet
.populateComponent(values, component))
[
all
...]
/frameworks/opt/calendar/src/com/android/calendarcommon/
RecurrenceSet.java
34
public class
RecurrenceSet
{
36
private final static String TAG = "
RecurrenceSet
";
48
* Creates a new
RecurrenceSet
from information stored in the
52
public
RecurrenceSet
(ContentValues values)
62
* Creates a new
RecurrenceSet
from information stored in a database
70
public
RecurrenceSet
(Cursor cursor)
83
public
RecurrenceSet
(String rruleStr, String rdateStr,
125
* Returns whether or not a recurrence is defined in this
RecurrenceSet
.
126
* @return Whether or not a recurrence is defined in this
RecurrenceSet
.
Completed in 24 milliseconds