Searched refs:remainder (Results 1 – 11 of 11) sorted by relevance
44 int remainder = (int) (remainingTime % HOUR_IN_MILLIS); in setTimeString() local46 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()
51 int remainder = (int) (accumulatedTime % HOUR_IN_MILLIS); in setTimeString() local53 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()
73 final long remainder = delta % DateUtils.MINUTE_IN_MILLIS; in formatElapsedTimeUntilAlarm() local74 delta += remainder == 0 ? 0 : (DateUtils.MINUTE_IN_MILLIS - remainder); in formatElapsedTimeUntilAlarm()
248 int remainder = (int) (time % DateUtils.HOUR_IN_MILLIS); in formatTime() local250 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()
83 final CharSequence remainder = TextUtils.ellipsize(text.subSequence(lastLineStart, in setText() local91 if (!TextUtils.isEmpty(remainder)) { in setText()92 builder.append(remainder.toString()); in setText()
159 final int remainder = widthMinusPadding - (imageSize * mColumnCount); in onMeasureForTiles() local164 final int childWidth = imageSize + (i < remainder ? 1 : 0); in onMeasureForTiles()
265 int remainder = parentWidth - width; in onMeasure() local266 int childMeasureSpec = remainder > 0 in onMeasure()267 ? MeasureSpec.makeMeasureSpec(remainder, MeasureSpec.EXACTLY) in onMeasure()
336 final String remainder = displayName.substring(j + 1); in matchesCombination() local339 context, remainder, query.substring(queryStart + 1), partialTemp)) { in matchesCombination()