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 474 long durationSeconds = (durationMillis / 1000);
475 if (start.allDay && (durationSeconds % 86400) == 0) {
476 return "P" + (durationSeconds / 86400) + "D"; // Server wants this instead of P86400S
478 return "P" + durationSeconds + "S";
  /system/media/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 499 long durationSeconds = durationMillis / 1000;
503 if (isAllDay && (durationSeconds % 86400) == 0) {
504 return "P" + durationSeconds / 86400 + "D";
506 return "PT" + durationSeconds + "S";
    [all...]

Completed in 442 milliseconds