Searched defs:mMaxLength (Results 1 - 2 of 2) sorted by relevance

/packages/providers/ContactsProvider/src/com/android/providers/contacts/aggregation/util/
H A DNameDistance.java35 private final int mMaxLength; field in class:NameDistance
46 mMaxLength = maxLength;
57 mMaxLength = 0;
93 if (length1 > mMaxLength) {
94 length1 = mMaxLength;
98 if (length2 > mMaxLength) {
99 length2 = mMaxLength;
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
H A DAndroidSpellCheckerService.java246 private final int mMaxLength; field in class:AndroidSpellCheckerService.SuggestionsGatherer
258 mMaxLength = maxLength;
260 mScores = new int[mMaxLength];
270 if (insertIndex == 0 && mLength >= mMaxLength) {
279 // if (0 >= mMaxLength) {
287 if (insertIndex >= mMaxLength) {
294 if (mLength < mMaxLength) {

Completed in 138 milliseconds