HomeSort by relevance Sort by last modified time
    Searched defs:mMax (Results 1 - 13 of 13) sorted by null

  /frameworks/native/include/utils/
StringArray.h 76 int mMax;
  /frameworks/base/core/java/android/text/
InputFilter.java 79 mMax = max;
84 int keep = mMax - (dest.length() - (dend - dstart));
102 private int mMax;
BoringLayout.java 204 mMax = metrics.width;
214 mMax = (int) FloatMath.ceil(line.metrics(null));
360 return mMax;
419 private float mMax;
  /frameworks/base/core/java/android/speech/srec/
UlawEncoderInputStream.java 41 private int mMax = 0;
137 mMax = max;
153 encode(mBuf, 0, buf, offset, n, mMax);
  /frameworks/base/core/java/android/app/
ProgressDialog.java 63 private int mMax;
172 if (mMax > 0) {
173 setMax(mMax);
249 return mMax;
257 mMax = max;
  /frameworks/base/core/java/android/preference/
SeekBarPreference.java 36 private int mMax;
44 setMax(a.getInt(com.android.internal.R.styleable.ProgressBar_max, mMax));
63 seekBar.setMax(mMax);
101 if (max != mMax) {
102 mMax = max;
112 if (progress > mMax) {
113 progress = mMax;
184 myState.max = mMax;
200 mMax = myState.max;
  /frameworks/base/core/java/android/view/
InputDevice.java 607 private float mMax;
615 mMax = max;
649 return mMax;
657 return mMax - mMin;
703 out.writeFloat(range.mMax);
757 description.append(" max=").append(range.mMax);
  /packages/apps/Settings/src/com/android/settings/widget/
ChartNetworkSeriesView.java 75 private long mMax;
160 mMax = 0;
171 mMax = 0;
255 mMax = totalData;
307 final long maxVisible = mEstimateVisible ? mMaxEstimate : mMax;
ChartDataUsageView.java 459 private long mMax;
469 return Objects.hashCode(mMin, mMax, mSize);
474 if (mMin != min || mMax != max) {
476 mMax = max;
495 return (mSize * (value - mMin)) / (mMax - mMin);
500 return (long) (mMin + ((point * (mMax - mMin)) / mSize));
517 time.set(mMax);
524 if (timeMillis <= mMax) {
544 private long mMax;
551 return Objects.hashCode(mMin, mMax, mSize)
    [all...]
  /frameworks/base/core/java/android/widget/
ProgressBar.java 206 private int mMax;
287 setMax(a.getInt(R.styleable.ProgressBar_max, mMax));
405 mMax = 100;
644 float scale = mMax > 0 ? (float) progress / (float) mMax : 0;
713 if (progress > mMax) {
714 progress = mMax;
745 if (secondaryProgress > mMax) {
746 secondaryProgress = mMax;
800 return mMax;
    [all...]
  /packages/apps/MusicFX/src/com/android/musicfx/seekbar/
ProgressBar.java 201 private int mMax;
280 setMax(a.getInt(R.styleable.ProgressBar_max, mMax));
401 mMax = 100;
593 float scale = mMax > 0 ? (float) progress / (float) mMax : 0;
664 if (progress > mMax) {
665 progress = mMax;
696 if (secondaryProgress > mMax) {
697 secondaryProgress = mMax;
751 return mMax;
    [all...]
  /sdk/ddms/libs/ddmuilib/src/com/android/ddmuilib/
NativeHeapPanel.java 370 private int mMax;
374 mMax = m;
379 for (int i = mMax; i > 0 && isQuitting() == false; i -= 10) {
380 updateNHLibraryAllocationTable(mLibAlloc, mMax - i, mMax - i + 10);
    [all...]
  /frameworks/wilhelm/src/
itfstruct.h 326 SLmilliHertz mMax;

Completed in 1174 milliseconds