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

  /packages/apps/Settings/src/com/android/settings/notification/
ZenModeVoiceActivity.java 113 CharSequence formattedTime = DateFormat.format(pattern, time);
117 return res.getQuantityString(byMinute, minutes, minutes, formattedTime);
119 return res.getString(byTime, formattedTime);
122 return res.getQuantityString(byHour, hours, hours, formattedTime);
  /packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
LapsAdapter.java 261 final String formattedTime = formatTime(longestLapTime, lapTime, " ");
264 final int newLength = formattedTime.length();
270 return formattedTime;
282 final String formattedTime = formatTime(longestAccumulatedTime, accumulatedTime, " ");
285 final int newLength = formattedTime.length();
291 return formattedTime;
  /frameworks/base/core/java/android/service/notification/
ZenModeConfig.java 720 final CharSequence formattedTime = getFormattedTime(context, time, userHandle);
727 summary = res.getQuantityString(summaryResId, num, num, formattedTime);
730 line1 = res.getQuantityString(line1ResId, num, num, formattedTime);
731 line2 = res.getString(R.string.zen_mode_until, formattedTime);
737 summary = res.getQuantityString(summaryResId, num, num, formattedTime);
740 line1 = res.getQuantityString(line1ResId, num, num, formattedTime);
741 line2 = res.getString(R.string.zen_mode_until, formattedTime);
744 summary = line1 = line2 = res.getString(R.string.zen_mode_until, formattedTime);
    [all...]
  /frameworks/av/services/camera/libcameraservice/
CameraService.cpp 639 char formattedTime[64];
640 strftime(formattedTime, sizeof(formattedTime), "%m-%d %H:%M:%S", localtime(&now));
641 return String8(formattedTime);
    [all...]
  /frameworks/base/packages/SystemUI/src/com/android/systemui/volume/
ZenModePanel.java 469 final CharSequence formattedTime = DateFormat.format(pattern, nextAlarm);
471 final String template = getResources().getString(templateRes, formattedTime);
    [all...]

Completed in 2297 milliseconds