Home
last modified time | relevance | path

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

/frameworks/support/leanback/src/main/java/androidx/leanback/widget/
DPlaybackControlsPresenter.java168 double progressRatio = ratio * Integer.MAX_VALUE; // Could safely cast to int in setCurrentTime() local
169 mProgressBar.setProgress((int)progressRatio); in setCurrentTime()
180 double progressRatio = ratio * Integer.MAX_VALUE; // Could safely cast to int in setSecondaryProgress() local
181 mProgressBar.setSecondaryProgress((int) progressRatio); in setSecondaryProgress()
DPlaybackTransportRowPresenter.java498 int progressRatio = 0; in setCurrentPosition() local
502 progressRatio = (int) (ratio * Integer.MAX_VALUE); // Could safely cast to int in setCurrentPosition()
504 mProgressBar.setProgress((int) progressRatio); in setCurrentPosition()
512 double progressRatio = ratio * Integer.MAX_VALUE; // Could safely cast to int in setBufferedPosition() local
513 mProgressBar.setSecondaryProgress((int) progressRatio); in setBufferedPosition()