Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/settings/
DSeekBarDialogPreference.java43 private final int mMinValue; field in SeekBarDialogPreference
56 mMinValue = a.getInt(R.styleable.SeekBarDialogPreference_minValue, 0); in SeekBarDialogPreference()
72 mSeekBar.setMax(mMaxValue - mMinValue); in onCreateDialogView()
79 return value - mMinValue; in getProgressFromValue()
83 return progress + mMinValue; in getValueFromProgress()
87 final int clippedValue = Math.min(mMaxValue, Math.max(mMinValue, value)); in clipValue()
/packages/apps/TvSettings/Settings/src/com/android/tv/settings/dialog/
DPinDialogFragment.java425 private int mMinValue;
614 mMinValue = min;
616 mNextValue = mCurrentValue = mMinValue - 1;
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) {
674 mNextValue = mCurrentValue = mMinValue;
685 int interval = mMaxValue - mMinValue + 1;
686 if (value < mMinValue - interval || value > mMaxValue + interval) {
[all …]
/packages/services/Car/car-lib/src/android/car/hardware/
DCarPropertyConfig.java429 @Nullable private final T mMinValue; field in CarPropertyConfig.AreaConfig
433 mMinValue = minValue; in AreaConfig()
456 mMinValue = (T) in.readValue(getClass().getClassLoader()); in AreaConfig()
461 return mMinValue; in getMinValue()
475 dest.writeValue(mMinValue); in writeToParcel()
482 + "mMinValue=" + mMinValue in toString()
/packages/apps/Launcher3/quickstep/src/com/android/launcher3/statehandlers/
DDepthController.java69 private final float mMinValue; field in DepthController.ClampedDepthProperty
74 mMinValue = minValue; in ClampedDepthProperty()
80 depthController.setDepth(Utilities.boundToRange(depth, mMinValue, mMaxValue)); in setValue()