Home
last modified time | relevance | path

Searched refs:KIND_PREDICTION (Results 1 – 5 of 5) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/compat/
DSuggestionSpanUtilsTest.java143 createWordInfo("Quality", SuggestedWordInfo.KIND_PREDICTION); in testGetTextWithSuggestionSpan()
145 createWordInfo("Speed", SuggestedWordInfo.KIND_PREDICTION); in testGetTextWithSuggestionSpan()
147 createWordInfo("Price", SuggestedWordInfo.KIND_PREDICTION); in testGetTextWithSuggestionSpan()
204 if (suggestedWordInfo.isKindOf(SuggestedWordInfo.KIND_PREDICTION)) { in testGetTextWithSuggestionSpan()
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/
Ddictionary.h53 static const int KIND_PREDICTION = 8; // A prediction (== a suggestion with no input) variable
/packages/inputmethods/LatinIME/native/jni/src/suggest/core/result/
Dsuggestion_results.cpp57 addSuggestion(codePoints, codePointCount, probability, Dictionary::KIND_PREDICTION, in addPrediction()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/compat/
DSuggestionSpanUtils.java87 if (info.isKindOf(SuggestedWordInfo.KIND_PREDICTION)) { in getTextWithSuggestionSpan()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
DSuggestedWords.java253 public static final int KIND_PREDICTION = 8; // A prediction (== a suggestion with no input) field in SuggestedWords.SuggestedWordInfo