OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:tzidx
(Results
1 - 1
of
1
) sorted by null
/frameworks/opt/calendar/src/com/android/calendarcommon2/
RecurrenceSet.java
154
int
tzidx
= recurrence.indexOf(";");
local
155
if (
tzidx
!= -1) {
156
tz = recurrence.substring(0,
tzidx
);
157
recurrence = recurrence.substring(
tzidx
+ 1);
453
int
tzidx
= dateStr.indexOf(";");
local
454
if (
tzidx
!= -1) {
455
tz = dateStr.substring(0,
tzidx
);
456
dateStr = dateStr.substring(
tzidx
+ 1);
Completed in 202 milliseconds