OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:suggestionsSize
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidSpellCheckerSession.java
108
final int
suggestionsSize
= N + additionalSize;
109
final int[] newOffsets = new int[
suggestionsSize
];
110
final int[] newLengths = new int[
suggestionsSize
];
111
final SuggestionsInfo[] newSuggestionsInfos = new SuggestionsInfo[
suggestionsSize
];
118
for (; i <
suggestionsSize
; ++i) {
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
Suggest.java
352
final int
suggestionsSize
= suggestions.size();
353
final ArrayList<SuggestedWordInfo> suggestionsList = new ArrayList<>(
suggestionsSize
);
357
for (int i = 0; i <
suggestionsSize
- 1; ++i) {
Completed in 887 milliseconds