OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SuggestionsGatherer
(Results
1 - 2
of
2
) sorted by null
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/spellcheck/
AndroidWordLevelSpellCheckerSession.java
35
import com.android.inputmethod.latin.spellcheck.AndroidSpellCheckerService.
SuggestionsGatherer
;
299
//final
SuggestionsGatherer
suggestionsGatherer
= new
SuggestionsGatherer
(text,
302
final
SuggestionsGatherer
suggestionsGatherer
= mService.newSuggestionsGatherer(
328
suggestionsGatherer
.addWord(suggestionStr.toCharArray(), null, 0,
341
final
SuggestionsGatherer
.Result result =
suggestionsGatherer
.getResults(
AndroidSpellCheckerService.java
226
public
SuggestionsGatherer
newSuggestionsGatherer(final String text, int maxLength) {
227
return new
SuggestionsGatherer
(text, mRecommendedThreshold, maxLength);
231
public static final class
SuggestionsGatherer
{
254
SuggestionsGatherer
(final String originalText, final float recommendedThreshold,
Completed in 51 milliseconds