Searched refs:getMax (Results 1 - 9 of 9) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DAbsSeekBar.java193 if ((mKeyProgressIncrement == 0) || (getMax() / mKeyProgressIncrement > 20)) {
196 setKeyProgressIncrement(Math.max(1, Math.round((float) getMax() / 20)));
256 int max = getMax();
448 final int max = getMax();
497 if (progress >= getMax()) break;
523 if (progress < getMax()) {
538 final int increment = Math.max(1, Math.round((float) getMax() / 5));
549 if (progress >= getMax()) {
564 int max = getMax();
H A DRatingBar.java218 final int newProgress = (int) (newMax / getMax() * getProgress());
229 return (float) getNumStars() / getMax();
237 return 1f * getMax() / mNumStars;
H A DProgressBar.java691 * @param progress the new progress, between 0 and {@link #getMax()}
729 * @param secondaryProgress the new secondary progress, between 0 and {@link #getMax()}
759 * @return the current progress, between 0 and {@link #getMax()}
765 * @see #getMax()
776 * @return the current secondary progress, between 0 and {@link #getMax()}
782 * @see #getMax()
799 public synchronized int getMax() { method in class:ProgressBar
808 * @see #getMax()
/frameworks/base/core/java/android/app/
H A DProgressDialog.java138 int max = mProgress.getMax();
245 public int getMax() { method in class:ProgressDialog
247 return mProgress.getMax();
/frameworks/base/core/java/com/android/internal/widget/
H A DTextProgressBar.java153 mProgressBar.getMax()) + params.leftMargin;
/frameworks/base/core/java/android/view/
H A DInputDevice.java757 public float getMax() { method in class:InputDevice.MotionRange
H A DVolumePanel.java716 if (sc.seekbarView.getMax() != max) {
/frameworks/base/core/java/android/view/accessibility/
H A DAccessibilityNodeInfo.java2171 parcel.writeFloat(mRangeInfo.getMax());
2629 public float getMax() { method in class:AccessibilityNodeInfo.RangeInfo
/frameworks/support/v7/appcompat/src/android/support/v7/internal/widget/
H A DProgressBarICS.java457 * @param progress the new progress, between 0 and {@link #getMax()}
493 * @param secondaryProgress the new secondary progress, between 0 and {@link #getMax()}
522 * @return the current progress, between 0 and {@link #getMax()}
528 * @see #getMax()
538 * @return the current secondary progress, between 0 and {@link #getMax()}
544 * @see #getMax()
559 public synchronized int getMax() { method in class:ProgressBarICS
568 * @see #getMax()

Completed in 1009 milliseconds