Searched defs:seconds (Results 1 - 5 of 5) sorted by relevance

/packages/experimental/RpcPerformance/
H A Drpcperftest.cpp91 double seconds = (after.tv_sec - before.tv_sec); local
92 seconds += (after.tv_nsec - before.tv_nsec) / 1000000000.0;
94 COUNT, seconds, 1000.0 * seconds / COUNT);
/packages/apps/DeskClock/src/com/android/deskclock/timer/
H A DTimerView.java72 mSeconds = (TextView) findViewById(R.id.seconds);
104 int minutesOnesDigit, int seconds) {
141 mSeconds.setText(String.format("%02d", seconds));
103 setTime(int hoursOnesDigit, int minutesTensDigit, int minutesOnesDigit, int seconds) argument
H A DCountingTimerView.java95 * Class to measure and draw the digit pairs of hours, minutes, seconds or hundredths. Digits
96 * may have an optional label. for hours, minutes and seconds, this label trails the digits
97 * and for seconds, precedes the digits.
315 * Update the time to display. Separates that time into the hours, minutes, seconds and
321 * 100 milliseconds of zero seconds and when so, invalidate the view.
332 long hundreds, seconds, minutes, hours;
333 seconds = time / 1000;
334 hundreds = (time - seconds * 1000) / 10;
335 minutes = seconds / 60;
336 seconds
506 getTimeStringForAccessibility(int hours, int minutes, int seconds, boolean showNeg, Resources r) argument
[all...]
/packages/apps/Camera2/src/com/android/camera/data/
H A DMediaDetails.java174 * Returns a (localized) string for the given duration (in seconds).
176 public static String formatDuration(final Context context, long seconds) { argument
177 long h = seconds / 3600;
178 long m = (seconds - h * 3600) / 60;
179 long s = seconds - (h * 3600 + m * 60);
/packages/apps/UnifiedEmail/src/org/apache/commons/io/
H A DFileUtils.java1064 * true up to the maximum time specified in seconds.
1067 * @param seconds the maximum time in seconds to wait
1071 public static boolean waitFor(File file, int seconds) { argument
1077 if (timeout++ > seconds) {

Completed in 199 milliseconds