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

  /frameworks/base/libs/utils/
StringArray.cpp 32 : mMax(0), mCurrent(0), mArray(NULL)
46 if (mCurrent >= mMax) {
49 if (mMax == 0)
50 mMax = 16; // initial storage
52 mMax *= 2;
54 tmp = new char*[mMax];
  /frameworks/base/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));
95 private int mMax;
BoringLayout.java 204 mMax = metrics.width;
212 mMax = (int) (FloatMath.ceil(Styled.measureText(paint, sTemp,
328 return mMax;
384 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/view/
InputDevice.java 342 private float mMax;
348 mMax = max;
366 return mMax;
374 return mMax - mMin;
440 out.writeFloat(range.mMax);
508 description.append(" max=").append(range.mMax);
  /frameworks/base/core/java/android/app/
ProgressDialog.java 62 private int mMax;
150 if (mMax > 0) {
151 setMax(mMax);
227 return mMax;
235 mMax = max;
  /frameworks/base/core/java/android/widget/
ProgressBar.java 136 private int mMax;
204 setMax(a.getInt(R.styleable.ProgressBar_max, mMax));
322 mMax = 100;
491 float scale = mMax > 0 ? (float) progress / (float) mMax : 0;
559 if (progress > mMax) {
560 progress = mMax;
591 if (secondaryProgress > mMax) {
592 secondaryProgress = mMax;
646 return mMax;
    [all...]
  /system/core/nexus/
Property.cpp 65 mMax = max;
74 strncpy(mBuffer, value, mMax);
Property.h 70 size_t mMax;
  /system/media/opensles/libopensles/
IEqualizer.c 259 *pMax = this->mBands[band].mMax;
304 if (!(band->mMin <= frequency && frequency <= band->mMax))
306 assert(band->mMin <= band->mCenter && band->mCenter <= band->mMax);
sles_allinclusive.h 583 SLmilliHertz 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/base/telephony/java/com/android/internal/telephony/
SMSDispatcher.java 173 * @param mMax is the number of SMS allowed without user permit
176 SmsCounter(int mMax, int mPeriod) {
177 mMaxAllowed = mMax;
    [all...]

Completed in 300 milliseconds