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

  /frameworks/base/obex/javax/obex/
ApplicationParameter.java 44 private int mMaxLength = 1000;
112 mArray = new byte[mMaxLength];
117 if ((mLength + len + 2) > mMaxLength) {
121 mMaxLength = mLength + 4 * len;
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/
NameDistance.java 35 private final int mMaxLength;
46 mMaxLength = maxLength;
57 mMaxLength = 0;
93 if (length1 > mMaxLength) {
94 length1 = mMaxLength;
98 if (length2 > mMaxLength) {
99 length2 = mMaxLength;
  /external/webkit/WebKit/android/nav/
CachedInput.h 49 int maxLength() const { return mMaxLength; };
59 void setMaxLength(int maxLength) { mMaxLength = maxLength; }
70 int mMaxLength;
CachedInput.cpp 59 DUMP_NAV_LOGD("// int mMaxLength=%d;\n", b->mMaxLength);
  /frameworks/base/core/java/android/webkit/
WebTextView.java 74 private int mMaxLength;
122 mMaxLength = -1;
203 boolean maxedOut = mMaxLength != -1 && oldLength == mMaxLength;
421 (mMaxLength > -1 && mPreChange.length() > mMaxLength &&
422 mPreChange.substring(0, mMaxLength).equals(postChange))) {
767 mMaxLength = maxLength;
    [all...]

Completed in 34 milliseconds