HomeSort by relevance Sort by last modified time
    Searched defs:isNotAWord (Results 1 - 5 of 5) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/suggest/core/dictionary/property/
unigram_property.h 55 UnigramProperty(const bool representsBeginningOfSentence, const bool isNotAWord,
59 mIsNotAWord(isNotAWord), mIsBlacklisted(isBlacklisted), mProbability(probability),
66 bool isNotAWord() const {
  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/structure/pt_common/
patricia_trie_reading_utils.h 59 static AK_FORCE_INLINE bool isNotAWord(const NodeFlags flags) {
84 const bool isNotAWord, const bool isTerminal, const bool hasShortcutTargets,
89 nodeFlags = isNotAWord ? (nodeFlags | FLAG_IS_NOT_A_WORD) : nodeFlags;
pt_node_params.h 150 AK_FORCE_INLINE bool isNotAWord() const {
151 return PatriciaTrieReadingUtils::isNotAWord(mFlags);
164 && isNotAWord();
169 && isNotAWord();
  /packages/inputmethods/LatinIME/native/jni/
com_android_inputmethod_latin_BinaryDictionary.cpp 350 jboolean isBeginningOfSentence, jboolean isNotAWord, jboolean isBlacklisted,
366 const UnigramProperty unigramProperty(isBeginningOfSentence, isNotAWord,
470 jboolean isNotAWord = env->GetBooleanField(languageModelParam, isNotAWordFieldId);
483 const UnigramProperty unigramProperty(false /* isBeginningOfSentence */, isNotAWord,
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
FusionDictionary.java 105 final boolean isNotAWord, final boolean isBlacklistEntry) {
112 mIsNotAWord = isNotAWord;
118 final boolean isNotAWord, final boolean isBlacklistEntry,
125 mIsNotAWord = isNotAWord;
241 final boolean isNotAWord, final boolean isBlacklistEntry) {
277 mIsNotAWord = isNotAWord;
325 * @param isNotAWord true if this should not be considered a word (e.g. shortcut only)
328 final ArrayList<WeightedString> shortcutTargets, final boolean isNotAWord) {
329 add(getCodePoints(word), probabilityInfo, shortcutTargets, isNotAWord,
338 * @param isNotAWord true if this is not a word for spellcheking purposes (shortcut only or so
    [all...]

Completed in 131 milliseconds