HomeSort by relevance Sort by last modified time
    Searched refs:durationSeconds (Results 1 - 3 of 3) sorted by null

  /frameworks/opt/calendar/src/com/android/calendarcommon/
RecurrenceSet.java 480 long durationSeconds = (durationMillis / 1000);
481 if (start.allDay && (durationSeconds % 86400) == 0) {
482 return "P" + (durationSeconds / 86400) + "D"; // Server wants this instead of P86400S
484 return "P" + durationSeconds + "S";
  /frameworks/wilhelm/tools/permute/
permute.c 212 double durationSeconds = (double) sfinfo_in.frames / (double) sfinfo_in.samplerate;
217 s.mSegmentMax = durationSeconds / meanSegmentLengthSeconds;
  /cts/tests/tests/provider/src/android/provider/cts/
CalendarTest.java 509 long durationSeconds = durationMillis / 1000;
513 if (isAllDay && (durationSeconds % 86400) == 0) {
514 return "P" + durationSeconds / 86400 + "D";
516 return "PT" + durationSeconds + "S";
    [all...]

Completed in 628 milliseconds