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

  /packages/apps/Calendar/src/com/android/calendar/alerts/
AlertAdapter.java 57 String rrule = cursor.getString(AlertActivity.INDEX_RRULE); local
58 if (!TextUtils.isEmpty(rrule)) {
  /packages/providers/CalendarProvider/
maketests.py 38 RRULE = re.compile("RRULE:(.*)")
81 rrule = "" variable
99 re_rrule = RRULE.match(s)
101 rrule = re_rrule.group(1) variable
118 print " \"" + rrule + "\","
  /frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceSet.java 55 String rruleStr = values.getAsString(CalendarContract.Events.RRULE);
65 * CalendarProvider. The cursor must contain the RRULE, RDATE, EXRULE,
68 * @param cursor The cursor containing the RRULE, RDATE, EXRULE, and EXDATE
73 int rruleColumn = cursor.getColumnIndex(CalendarContract.Events.RRULE);
99 EventRecurrence rrule = new EventRecurrence(); local
100 rrule.parse(rruleStrs[i]);
101 rrules[i] = rrule;
180 * Populates the database map of values with the appropriate RRULE, RDATE,
187 * one of DTEND/DURATION, and one of RRULE/RDATE. Returns false if
211 String rrule = flattenProperties(component, "RRULE") local
    [all...]
  /frameworks/opt/calendar/tests/src/com/android/calendarcommon2/
RecurrenceProcessorTest.java 63 public void verifyRecurrence(String dtstartStr, String rrule, String rdate, String exrule,
66 verifyRecurrence(dtstartStr, rrule, rdate, exrule, exdate, rangeStartStr,
70 public void verifyRecurrence(String dtstartStr, String rrule, String rdate, String exrule,
79 + " RRULE:" + rrule
107 RecurrenceSet recur = new RecurrenceSet(rrule, rdate, exrule, exdate);
121 Log.i(TAG, "DTSTART:" + dtstartStr + " RRULE:" + rrule);
133 Log.i(TAG, "DTSTART:" + dtstartStr + " RRULE:" + rrule);
2472 String rrule = performanceRrules[i]; local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/
CalendarEventModel.java 342 String rrule = intent.getStringExtra(Events.RRULE); local
343 if (!TextUtils.isEmpty(rrule)) {
344 mRrule = rrule;
682 // if the rrule is no longer empty check if this is an exception
Event.java 81 Instances.RRULE, // 14
408 String rrule = cEvents.getString(PROJECTION_RRULE_INDEX); local
410 if (!TextUtils.isEmpty(rrule) || !TextUtils.isEmpty(rdate)) {
  /packages/apps/Calendar/src/com/android/calendar/recurrencepicker/
RecurrencePickerDialog.java 644 String rrule = b.getString(BUNDLE_RRULE); local
645 if (!TextUtils.isEmpty(rrule)) {
647 mRecurrence.parse(rrule);
    [all...]
  /packages/apps/Exchange/tests/src/com/android/exchange/utility/
CalendarUtilitiesTests.java 52 * Please see RFC2445 for RRULE definition
193 String rrule = "FREQ=DAILY;INTERVAL=1;BYDAY=WE,TH,SA;BYMONTHDAY=17"; local
194 assertEquals("DAILY", CalendarUtilities.tokenFromRrule(rrule, "FREQ="));
195 assertEquals("1", CalendarUtilities.tokenFromRrule(rrule, "INTERVAL="));
196 assertEquals("17", CalendarUtilities.tokenFromRrule(rrule, "BYMONTHDAY="));
197 assertEquals("WE,TH,SA", CalendarUtilities.tokenFromRrule(rrule, "BYDAY="));
198 assertNull(CalendarUtilities.tokenFromRrule(rrule, "UNTIL="));
478 // Set up a RRULE for this event
479 entity.getEntityValues().put(Events.RRULE, "FREQ=DAILY");
684 String rrule = CalendarUtilities.rruleFromRecurrence local
    [all...]
  /packages/providers/CalendarProvider/src/com/android/providers/calendar/
CalendarInstancesHelper.java 113 Events.RRULE,
173 int rruleColumn = entries.getColumnIndex(Events.RRULE);
265 Log.w(CalendarProvider2.TAG, "Could not parse RRULE recurrence string: "
613 * This may be a recurring event (has an RRULE or RDATE), an exception to a recurring
650 String rrule = values.getAsString(Events.RRULE); local
654 if (CalendarProvider2.isRecurrenceEvent(rrule, rdate, originalId, originalSyncId)) {
    [all...]
CalendarDatabaseHelper.java 102 Events.RRULE + "," +
548 CalendarContract.Events.RRULE + " TEXT," +
615 + "rrule TEXT,"
2546 String rrule = cursor.getString(8); local
    [all...]
CalendarProvider2.java 106 Events.RRULE,
410 ALLOWED_IN_EXCEPTION.add(Events.RRULE);
2093 String rrule = values.getAsString(Events.RRULE); local
2433 String rrule = values.getAsString(Events.RRULE); local
3235 String rrule = cursor.getString(EVENTS_RRULE_INDEX); local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/utility/
CalendarUtilities.java 249 static void putRuleIntoTimeZoneInformation(byte[] bytes, int offset, RRule rrule, int hour,
251 // MSFT months are 1 based, same as RRule
252 setWord(bytes, offset + MSFT_SYSTEMTIME_MONTH, rrule.month);
253 // MSFT day of week starts w/ Sunday = 0; RRule starts w/ Sunday = 1
254 setWord(bytes, offset + MSFT_SYSTEMTIME_DAY_OF_WEEK, rrule.dayOfWeek - 1);
255 // 5 means "last" in MSFT land; for RRule, it's -1
256 setWord(bytes, offset + MSFT_SYSTEMTIME_DAY, rrule.week < 0 ? 5 : rrule.week);
398 * A class for storing RRULE information. The RRULE members can be accessed individually o
1359 StringBuilder rrule = new StringBuilder("FREQ=" + typeStr); local
1927 String rrule = entityValues.getAsString(Events.RRULE); local
    [all...]
  /packages/apps/Calendar/src/com/android/calendar/event/
EditEventHelper.java 80 Events.RRULE, // 11
368 // ignore the RRULE returned because the exception event doesn't want one.
390 values.put(Events.RRULE, newRrule);
649 values.remove(Events.RRULE);
688 * update to the old event's rrule to do that.
691 * RRULE for the exception event.
723 * TODO: the model assumes RRULE and ignores RDATE, EXRULE, and EXDATE. For the
909 String rrule = model.mRrule; local
1217 String rrule = model.mRrule; local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/adapter/
CalendarSyncParser.java 275 * Recurring events (i.e. events with RRULE) must have a DURATION
325 if (cv.containsKey(Events.RRULE)) {
474 String rrule = recurrenceParser(); local
475 if (rrule != null) {
476 cv.put(Events.RRULE, rrule);
841 String rrule = recurrenceParser(); local
    [all...]
  /packages/apps/Exchange/src/com/android/exchange/eas/
EasSyncCalendar.java 513 final String rrule = entityValues.getAsString(Events.RRULE); local
514 if (rrule != null) {
515 CalendarUtilities.recurrenceFromRrule(rrule, startTime, localTimeZone, s);
    [all...]
  /external/chromium_org/third_party/icu/source/i18n/
vtzone.cpp 54 static const UChar ICAL_RRULE[] = {0x52, 0x52, 0x55, 0x4C, 0x45, 0}; /* "RRULE" */
369 * Parse individual RRULE
380 static void parseRRULE(const UnicodeString& rrule, int32_t& month, int32_t& dow, int32_t& wim,
401 prop_end = rrule.indexOf(SEMICOLON, prop_start);
403 prop.setTo(rrule, prop_start);
406 prop.setTo(rrule, prop_start, prop_end - prop_start);
538 UnicodeString rrule = *((UnicodeString*)dates->elementAt(0)); local
544 parseRRULE(rrule, month, dayOfWeek, nthDayOfWeek, days, daysCount, until, status);
588 // Check if BYMONTH + BYMONTHDAY + BYDAY rule with multiple RRULE lines.
614 rrule = *((UnicodeString*)dates->elementAt(i))
    [all...]
  /external/icu/icu4c/source/i18n/
vtzone.cpp 54 static const UChar ICAL_RRULE[] = {0x52, 0x52, 0x55, 0x4C, 0x45, 0}; /* "RRULE" */
369 * Parse individual RRULE
380 static void parseRRULE(const UnicodeString& rrule, int32_t& month, int32_t& dow, int32_t& wim,
401 prop_end = rrule.indexOf(SEMICOLON, prop_start);
403 prop.setTo(rrule, prop_start);
406 prop.setTo(rrule, prop_start, prop_end - prop_start);
538 UnicodeString rrule = *((UnicodeString*)dates->elementAt(0)); local
544 parseRRULE(rrule, month, dayOfWeek, nthDayOfWeek, days, daysCount, until, status);
588 // Check if BYMONTH + BYMONTHDAY + BYDAY rule with multiple RRULE lines.
614 rrule = *((UnicodeString*)dates->elementAt(i))
    [all...]
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 330 Events.RRULE,
421 // Events.RRULE,
441 * @param rrule Recurrence rule
446 String rrule) {
458 values.put(Events.RRULE, rrule);
3050 String rrule = "FREQ=DAILY;WKST=MO;COUNT=100"; local
3106 String rrule = "FREQ=DAILY;WKST=MO;COUNT=5\\nFREQ=WEEKLY;WKST=SU;COUNT=5"; local
3132 String rrule = "FREQ=OFTEN;WKST=MO"; local
    [all...]
  /packages/providers/CalendarProvider/tests/src/com/android/providers/calendar/
CalendarProvider2Test.java 543 String rrule, boolean allDay) {
544 init(title, description, startDate, endDate, rrule, allDay, DEFAULT_TIMEZONE);
549 String rrule, boolean allDay, String timezone) {
550 init(title, description, startDate, endDate, rrule, allDay, timezone);
554 String rrule, boolean allDay, String timezone) {
580 mRrule = rrule;
604 init(title, description, startDate, endDate, null /* rrule */, allDay, timezone);
1265 String rrule = cursor.getString(5); local
    [all...]
  /external/eclipse-basebuilder/basebuilder-3.6.2/org.eclipse.releng.basebuilder/plugins/
com.ibm.icu_4.2.1.v20100412.jar 
  /prebuilts/misc/common/icu4j/
icu4j.jar 

Completed in 2069 milliseconds