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

  /external/libnfc-nci/halimpl/bcm2079x/include/
StartupConfig.h 105 static const UINT8 mMaxLength;
  /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/aggregation/util/
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/libnfc-nci/halimpl/bcm2079x/adaptation/
StartupConfig.cpp 29 const UINT8 StartupConfig::mMaxLength = 255;
95 if ((newContent[0]+mBuffer.size()) > mMaxLength)
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerService.java 229 private final int mMaxLength;
241 mMaxLength = maxLength;
243 mScores = new int[mMaxLength];
253 if (insertIndex == 0 && mLength >= mMaxLength) {
262 // if (0 >= mMaxLength) {
270 if (insertIndex >= mMaxLength) {
277 if (mLength < mMaxLength) {
  /frameworks/base/core/java/android/webkit/
WebViewClassic.java 159 private int mMaxLength;
422 mMaxLength = initData.mMaxLength;
567 if (mMaxLength > 0) {
569 int maxReplace = mMaxLength - editable.length() + numReplaced;
    [all...]
WebViewCore.java     [all...]

Completed in 200 milliseconds