Home
last modified time | relevance | path

Searched refs:mMaxValue (Results 1 – 4 of 4) sorted by relevance

/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
DPinDialogFragment.java426 private int mMaxValue;
615 mMaxValue = max;
630 if (mCurrentValue < mMinValue || mCurrentValue > mMaxValue) {
637 if (value < mMinValue || value > mMaxValue) {
664 } else if (mCurrentValue >= mMinValue && mCurrentValue <= mMaxValue) {
673 if (mCurrentValue < mMinValue || mCurrentValue > mMaxValue) {
685 int interval = mMaxValue - mMinValue + 1;
686 if (value < mMinValue - interval || value > mMaxValue + interval) {
691 : (value > mMaxValue) ? value - interval : value;
/packages/services/Car/car-lib/src/android/car/hardware/
DCarPropertyConfig.java430 @Nullable private final T mMaxValue; field in CarPropertyConfig.AreaConfig
434 mMaxValue = maxValue; in AreaConfig()
457 mMaxValue = (T) in.readValue(getClass().getClassLoader()); in AreaConfig()
465 return mMaxValue; in getMaxValue()
476 dest.writeValue(mMaxValue); in writeToParcel()
483 + ", mMaxValue=" + mMaxValue in toString()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
DSeekBarDialogPreference.java42 private final int mMaxValue; field in SeekBarDialogPreference
55 mMaxValue = a.getInt(R.styleable.SeekBarDialogPreference_maxValue, 0); in SeekBarDialogPreference()
72 mSeekBar.setMax(mMaxValue - mMinValue); in onCreateDialogView()
87 final int clippedValue = Math.min(mMaxValue, Math.max(mMinValue, value)); in clipValue()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/statehandlers/
DDepthController.java70 private final float mMaxValue; field in DepthController.ClampedDepthProperty
75 mMaxValue = maxValue; in ClampedDepthProperty()
80 depthController.setDepth(Utilities.boundToRange(depth, mMinValue, mMaxValue)); in setValue()