Searched refs:secondaryProgress (Results 1 - 8 of 8) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DRatingBar.java280 final int secondaryProgress = (int) (Math.ceil(progressInStars) * ratio);
281 setSecondaryProgress(secondaryProgress);
H A DProgressBar.java439 (id == R.id.progress || id == R.id.secondaryProgress));
807 doRefreshProgress(R.id.secondaryProgress, mSecondaryProgress, false, false, false);
886 final Drawable target = getTintTarget(R.id.secondaryProgress, false);
1071 * id {@link android.R.id#secondaryProgress} in a {@link LayerDrawable}
1428 * @param secondaryProgress the new secondary progress, between {@link #getMin()} and
1436 public synchronized void setSecondaryProgress(int secondaryProgress) { argument
1441 if (secondaryProgress < mMin) {
1442 secondaryProgress = mMin;
1445 if (secondaryProgress > mMax) {
1446 secondaryProgress
1878 int secondaryProgress; field in class:ProgressBar.SavedState
[all...]
/frameworks/base/core/java/android/app/
H A DProgressDialog.java301 * @param secondaryProgress the current secondary progress, a value between 0 and
306 public void setSecondaryProgress(int secondaryProgress) { argument
308 mProgress.setSecondaryProgress(secondaryProgress);
311 mSecondaryProgressVal = secondaryProgress;
H A DActivity.java6196 * @param secondaryProgress The secondary progress for the progress bar. Valid ranges are from
6201 public final void setSecondaryProgress(int secondaryProgress) { argument
6203 secondaryProgress + Window.PROGRESS_SECONDARY_START);
/frameworks/support/car/src/androidTest/java/androidx/car/widget/
H A DSeekbarListItemTest.java172 final int secondaryProgress = 50;
174 item.setMax(secondaryProgress);
175 item.setSecondaryProgress(secondaryProgress);
180 is(equalTo(secondaryProgress)));
/frameworks/support/v7/appcompat/src/main/java/androidx/appcompat/widget/
H A DAppCompatProgressBarHelper.java87 (id == android.R.id.progress || id == android.R.id.secondaryProgress));
H A DAppCompatDrawableManager.java278 setPorterDuffColorFilter(ld.findDrawableByLayerId(android.R.id.secondaryProgress),
289 setPorterDuffColorFilter(ld.findDrawableByLayerId(android.R.id.secondaryProgress),
/frameworks/support/car/src/main/java/androidx/car/widget/
H A DSeekbarListItem.java154 public void setSecondaryProgress(int secondaryProgress) { argument
155 mSecondaryProgress = secondaryProgress;

Completed in 159 milliseconds