Home
last modified time | relevance | path

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

/packages/apps/DeskClock/src/com/android/deskclock/
DTimerTextController.java44 int remainder = (int) (remainingTime % HOUR_IN_MILLIS); in setTimeString() local
46 int minutes = (int) (remainder / MINUTE_IN_MILLIS); in setTimeString()
47 remainder = (int) (remainder % MINUTE_IN_MILLIS); in setTimeString()
49 int seconds = (int) (remainder / SECOND_IN_MILLIS); in setTimeString()
50 remainder = (int) (remainder % SECOND_IN_MILLIS); in setTimeString()
53 if (!isNegative && remainder != 0) { in setTimeString()
DStopwatchTextController.java51 int remainder = (int) (accumulatedTime % HOUR_IN_MILLIS); in setTimeString() local
53 final int minutes = (int) (remainder / MINUTE_IN_MILLIS); in setTimeString()
54 remainder = (int) (remainder % MINUTE_IN_MILLIS); in setTimeString()
56 final int seconds = (int) (remainder / SECOND_IN_MILLIS); in setTimeString()
57 remainder = (int) (remainder % SECOND_IN_MILLIS); in setTimeString()
60 remainder / 10, 2)); in setTimeString()
DAlarmUtils.kt77 val remainder = variableDelta % DateUtils.MINUTE_IN_MILLIS in formatElapsedTimeUntilAlarm() constant
78 variableDelta += if (remainder == 0L) 0 else DateUtils.MINUTE_IN_MILLIS - remainder in formatElapsedTimeUntilAlarm()
DAlarmUtils.java73 final long remainder = delta % DateUtils.MINUTE_IN_MILLIS; in formatElapsedTimeUntilAlarm() local
74 delta += remainder == 0 ? 0 : (DateUtils.MINUTE_IN_MILLIS - remainder); in formatElapsedTimeUntilAlarm()
/packages/apps/DeskClock/src/com/android/deskclock/stopwatch/
DLapsAdapter.java248 int remainder = (int) (time % DateUtils.HOUR_IN_MILLIS); in formatTime() local
250 minutes = (int) (remainder / DateUtils.MINUTE_IN_MILLIS); in formatTime()
251 remainder = (int) (remainder % DateUtils.MINUTE_IN_MILLIS); in formatTime()
253 seconds = (int) (remainder / DateUtils.SECOND_IN_MILLIS); in formatTime()
254 remainder = (int) (remainder % DateUtils.SECOND_IN_MILLIS); in formatTime()
256 hundredths = remainder / 10; in formatTime()
DLapsAdapter.kt314 var remainder = (time % DateUtils.HOUR_IN_MILLIS).toInt() in formatTime() variable
315 minutes = (remainder / DateUtils.MINUTE_IN_MILLIS).toInt() in formatTime()
316 remainder = (remainder % DateUtils.MINUTE_IN_MILLIS).toInt() in formatTime()
317 seconds = (remainder / DateUtils.SECOND_IN_MILLIS).toInt() in formatTime()
318 remainder = (remainder % DateUtils.SECOND_IN_MILLIS).toInt() in formatTime()
319 hundredths = remainder / 10 in formatTime()
/packages/apps/Contacts/src/com/android/contacts/widget/
DInterpolatingLayout.java265 int remainder = parentWidth - width; in onMeasure() local
266 int childMeasureSpec = remainder > 0 in onMeasure()
267 ? MeasureSpec.makeMeasureSpec(remainder, MeasureSpec.EXACTLY) in onMeasure()
/packages/apps/Dialer/java/com/android/dialer/smartdial/util/
DSmartDialNameMatcher.java336 final String remainder = displayName.substring(j + 1); in matchesCombination() local
339 context, remainder, query.substring(queryStart + 1), partialTemp)) { in matchesCombination()
/packages/inputmethods/LatinIME/dictionaries/
Den_GB_wordlist.combined.gz1dictionary=main:en_gb,locale=en_GB,description=English (UK),date ...
Den_US_wordlist.combined.gz1dictionary=main:en_us,locale=en_US,description=English (US),date ...
Den_wordlist.combined.gz1dictionary=main:en,locale=en,description=English,date=1414726273, ...