Home
last modified time | relevance | path

Searched refs:dateStr (Results 1 – 3 of 3) sorted by relevance

/frameworks/opt/calendar/src/com/android/calendarcommon2/
DRecurrenceSet.java446 String dateStr) { in addPropertyForDateStr() argument
447 if (TextUtils.isEmpty(dateStr)) { in addPropertyForDateStr()
453 int tzidx = dateStr.indexOf(";"); in addPropertyForDateStr()
455 tz = dateStr.substring(0, tzidx); in addPropertyForDateStr()
456 dateStr = dateStr.substring(tzidx + 1); in addPropertyForDateStr()
461 prop.setValue(dateStr); in addPropertyForDateStr()
/frameworks/volley/src/com/android/volley/toolbox/
DHttpHeaderParser.java107 public static long parseDateAsEpoch(String dateStr) { in parseDateAsEpoch() argument
110 return DateUtils.parseDate(dateStr).getTime(); in parseDateAsEpoch()
/frameworks/base/services/java/com/android/server/am/
DUsageStatsService.java918 String dateStr = file.substring(FILE_PREFIX.length()); in collectDumpInfoFLOCK() local
919 if (dateStr.length() > 0 && (dateStr.charAt(0) <= '0' || dateStr.charAt(0) >= '9')) { in collectDumpInfoFLOCK()
926 collectDumpInfoFromParcelFLOCK(in, pw, dateStr, isCompactOutput, in collectDumpInfoFLOCK()