Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/util/
DTimeUtils.java277 static private int printFieldLocked(char[] formatStr, int amt, char suffix, int pos, in printFieldLocked() method in TimeUtils
379 pos = printFieldLocked(formatStr, days, 'd', pos, false, 0); in formatDurationLocked()
380 pos = printFieldLocked(formatStr, hours, 'h', pos, pos != start, zeropad ? 2 : 0); in formatDurationLocked()
381 pos = printFieldLocked(formatStr, minutes, 'm', pos, pos != start, zeropad ? 2 : 0); in formatDurationLocked()
382 pos = printFieldLocked(formatStr, seconds, 's', pos, pos != start, zeropad ? 2 : 0); in formatDurationLocked()
383 … pos = printFieldLocked(formatStr, millis, 'm', pos, true, (zeropad && pos != start) ? 3 : 0); in formatDurationLocked()