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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/suggestions/
MoreSuggestions.java 51 private final int[] mWidths = new int[SuggestionStripView.MAX_SUGGESTIONS];
52 private final int[] mRowNumbers = new int[SuggestionStripView.MAX_SUGGESTIONS];
53 private final int[] mColumnOrders = new int[SuggestionStripView.MAX_SUGGESTIONS];
54 private final int[] mNumColumnsInRow = new int[SuggestionStripView.MAX_SUGGESTIONS];
74 final int size = Math.min(suggestedWords.size(), SuggestionStripView.MAX_SUGGESTIONS);
SuggestionStripView.java 80 public static final int MAX_SUGGESTIONS = 18;
580 for (int pos = 0; pos < MAX_SUGGESTIONS; pos++) {
    [all...]
  /development/samples/SoftKeyboard/src/com/example/android/softkeyboard/
CandidateView.java 45 private static final int MAX_SUGGESTIONS = 32;
48 private int[] mWordWidth = new int[MAX_SUGGESTIONS];
49 private int[] mWordX = new int[MAX_SUGGESTIONS];
  /packages/apps/Contacts/src/com/android/contacts/list/
JoinContactListAdapter.java 41 private static final int MAX_SUGGESTIONS = 4;
82 builder.appendQueryParameter("limit", String.valueOf(MAX_SUGGESTIONS));
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java 66 public static final int MAX_SUGGESTIONS = 18;
195 MAX_SUGGESTIONS);
307 MAX_SUGGESTIONS);
ExpandableDictionary.java 406 if (suggestions.size() >= Suggest.MAX_SUGGESTIONS) return false;
414 if (suggestions.size() > Suggest.MAX_SUGGESTIONS) return false;
    [all...]
LatinIME.java     [all...]

Completed in 209 milliseconds