/frameworks/opt/calendar/tests/src/com/android/calendarcommon2/ |
RecurrenceSetTest.java | 33 // Test a recurrence 36 String recurrence = "DTSTART;TZID=America/New_York:20080221T070000\n" local 40 verifyPopulateContentValues(recurrence, "FREQ=DAILY;UNTIL=20080222T000000Z", null, 47 String recurrence = "DTSTART;VALUE=DATE:20090821\nDTEND;VALUE=DATE:20090822\n" local 49 verifyPopulateContentValues(recurrence, "FREQ=YEARLY;WKST=SU", null, 56 String recurrence = "DTSTART;VALUE=DATE:20090821\nDTEND;VALUE=DATE:20090823\n" local 58 verifyPopulateContentValues(recurrence, "FREQ=YEARLY;WKST=SU", null, 65 String recurrence = "DTSTART;VALUE=DATE:20090821\n" local 69 verifyPopulateContentValues(recurrence, "FREQ=YEARLY;WKST=SU\nFREQ=MONTHLY;COUNT=3", null, 77 String recurrence = "DTSTART;TZID=America/Los_Angeles:20090821T010203\n local 90 String recurrence = "DTSTART;TZID=America\/Los_Angeles:20090821T070000\\n" local 110 String recurrence = "DTSTART;TZID=GMT+05:30:20080221T070000\\n" local 120 String recurrence = "DTSTART;TZID=America\/New_York:20080221T070000\\n" local [all...] |
/hardware/qcom/gps/core/ |
gps_extended.h | 41 GpsPositionRecurrence recurrence; member in struct:LocPosMode 50 mode(m), recurrence(recr), 65 recurrence(GPS_POSITION_RECURRENCE_PERIODIC), 75 anotherMode.recurrence == recurrence &&
|
loc_core_log.cpp | 39 LOC_LOGV ("Position mode: %s\n Position recurrence: %s\n " 43 loc_get_position_recurrence_name(recurrence),
|
/hardware/qcom/gps/msm8084/core/ |
gps_extended.h | 41 GpsPositionRecurrence recurrence; member in struct:LocPosMode 50 mode(m), recurrence(recr), 65 recurrence(GPS_POSITION_RECURRENCE_PERIODIC), 75 anotherMode.recurrence == recurrence &&
|
loc_core_log.cpp | 39 LOC_LOGV ("Position mode: %s\n Position recurrence: %s\n " 43 loc_get_position_recurrence_name(recurrence),
|
/hardware/qcom/gps/msm8909/core/ |
gps_extended.h | 41 GpsPositionRecurrence recurrence; member in struct:LocPosMode 50 mode(m), recurrence(recr), 65 recurrence(GPS_POSITION_RECURRENCE_PERIODIC), 75 anotherMode.recurrence == recurrence &&
|
loc_core_log.cpp | 39 LOC_LOGV ("Position mode: %s\n Position recurrence: %s\n " 43 loc_get_position_recurrence_name(recurrence),
|
/hardware/qcom/gps/msm8960/core/ |
gps_extended.h | 41 GpsPositionRecurrence recurrence; member in struct:LocPosMode 50 mode(m), recurrence(recr), 65 recurrence(GPS_POSITION_RECURRENCE_PERIODIC), 75 anotherMode.recurrence == recurrence &&
|
loc_core_log.cpp | 39 LOC_LOGV ("Position mode: %s\n Position recurrence: %s\n " 43 loc_get_position_recurrence_name(recurrence),
|
/hardware/qcom/gps/msm8994/core/ |
gps_extended.h | 41 GpsPositionRecurrence recurrence; member in struct:LocPosMode 50 mode(m), recurrence(recr), 65 recurrence(GPS_POSITION_RECURRENCE_PERIODIC), 75 anotherMode.recurrence == recurrence &&
|
loc_core_log.cpp | 39 LOC_LOGV ("Position mode: %s\n Position recurrence: %s\n " 43 loc_get_position_recurrence_name(recurrence),
|
/hardware/qcom/gps/msm8996/core/ |
gps_extended.h | 41 GpsPositionRecurrence recurrence; member in struct:LocPosMode 50 mode(m), recurrence(recr), 65 recurrence(GPS_POSITION_RECURRENCE_PERIODIC), 75 anotherMode.recurrence == recurrence &&
|
loc_core_log.cpp | 39 LOC_LOGV ("Position mode: %s\n Position recurrence: %s\n " 43 loc_get_position_recurrence_name(recurrence),
|
/hardware/qcom/gps/msmcobalt/core/ |
gps_extended.h | 49 GpsPositionRecurrence recurrence; member in struct:LocPosMode 59 mode(m), recurrence(recr), 76 recurrence(GPS_POSITION_RECURRENCE_PERIODIC), 87 anotherMode.recurrence == recurrence &&
|
loc_core_log.cpp | 39 LOC_LOGV ("Position mode: %s\n Position recurrence: %s\n " 43 loc_get_position_recurrence_name(recurrence),
|
/packages/apps/Calendar/src/com/android/calendar/ |
EventRecurrenceFormatter.java | 35 public static String getRepeatString(Context context, Resources r, EventRecurrence recurrence, 40 if (recurrence.until != null) { 43 t.parse(recurrence.until); 51 if (recurrence.count > 0) { 52 sb.append(r.getQuantityString(R.plurals.endByCount, recurrence.count, 53 recurrence.count)); 59 int interval = recurrence.interval <= 1 ? 1 : recurrence.interval; 60 switch (recurrence.freq) { 64 if (recurrence.repeatsOnEveryWeekDay()) [all...] |
/external/chromium-trace/catapult/third_party/gsutil/third_party/boto/boto/ec2/autoscale/ |
scheduled.py | 35 self.recurrence = None 59 elif name == 'Recurrence': 60 self.recurrence = value
|
__init__.py | 623 recurrence=None): 649 :param start_time: The time for this action to start. When StartTime and EndTime are specified with Recurrence, they form the boundaries of when the recurring action will start and stop. 652 :param end_time: The time for this action to end. When StartTime and EndTime are specified with Recurrence, they form the boundaries of when the recurring action will start and stop. 654 :type recurrence: string 655 :param recurrence: The time when recurring future actions will start. Start time is specified by the user following the Unix cron syntax format. EXAMPLE: '0 10 * * *' 663 if recurrence is not None: 664 params['Recurrence'] = recurrence [all...] |
/frameworks/opt/calendar/src/com/android/calendarcommon2/ |
RecurrenceSet.java | 32 * Basic information about a recurrence, following RFC 2445 Section 4.8.5. 136 * Returns whether or not a recurrence is defined in this RecurrenceSet. 137 * @return Whether or not a recurrence is defined in this RecurrenceSet. 145 * representing each date/time in the recurrence. 146 * @param recurrence The recurrence to be parsed. 149 public static long[] parseRecurrenceDates(String recurrence) 154 int tzidx = recurrence.indexOf(";"); 156 tz = recurrence.substring(0, tzidx); 157 recurrence = recurrence.substring(tzidx + 1) [all...] |
/packages/providers/CalendarProvider/ |
maketests.py | 77 recurrences = entry.getElementsByTagName("gd:recurrence")
83 recurrence = recurrences[0]
variable 85 for c in recurrence.childNodes:
|
/hardware/qcom/gps/msm8960/loc_api/libloc_api_50001/ |
loc.cpp | 67 static int loc_set_position_mode(GpsPositionMode mode, GpsPositionRecurrence recurrence, 379 GpsPositionRecurrence recurrence, 399 LocPosMode params(locMode, recurrence, min_interval,
|
/hardware/qcom/gps/loc_api/libloc_api_50001/ |
loc.cpp | 69 static int loc_set_position_mode(GpsPositionMode mode, GpsPositionRecurrence recurrence, 432 GpsPositionRecurrence recurrence, 452 LocPosMode params(locMode, recurrence, min_interval,
|
/hardware/qcom/gps/msm8084/loc_api/libloc_api_50001/ |
loc.cpp | 69 static int loc_set_position_mode(GpsPositionMode mode, GpsPositionRecurrence recurrence, 503 GpsPositionRecurrence recurrence, 523 LocPosMode params(locMode, recurrence, min_interval,
|
/hardware/qcom/gps/msm8909/loc_api/libloc_api_50001/ |
loc.cpp | 69 static int loc_set_position_mode(GpsPositionMode mode, GpsPositionRecurrence recurrence, 433 GpsPositionRecurrence recurrence, 453 LocPosMode params(locMode, recurrence, min_interval,
|
/hardware/qcom/gps/msm8994/loc_api/libloc_api_50001/ |
loc.cpp | 69 static int loc_set_position_mode(GpsPositionMode mode, GpsPositionRecurrence recurrence, 432 GpsPositionRecurrence recurrence, 452 LocPosMode params(locMode, recurrence, min_interval,
|