Home
last modified time | relevance | path

Searched refs:mIsNotAWord (Results 1 – 9 of 9) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/dictionary/property/
Dunigram_property.h52 : mRepresentsBeginningOfSentence(false), mIsNotAWord(false), in UnigramProperty()
61 mIsNotAWord(isNotAWord), mIsBlacklisted(false), in UnigramProperty()
70 mIsNotAWord(isNotAWord), mIsBlacklisted(false), in UnigramProperty()
79 mIsNotAWord(isNotAWord), mIsBlacklisted(isBlacklisted), in UnigramProperty()
88 mIsNotAWord(isNotAWord), mIsBlacklisted(isBlacklisted), in UnigramProperty()
97 return mIsNotAWord; in isNotAWord()
129 const bool mIsNotAWord; variable
Dword_attributes.h26 : mProbability(NOT_A_PROBABILITY), mIsBlacklisted(false), mIsNotAWord(false), in WordAttributes()
31 : mProbability(probability), mIsBlacklisted(isBlacklisted), mIsNotAWord(isNotAWord), in WordAttributes()
43 return mIsNotAWord; in isNotAWord()
63 bool mIsNotAWord; variable
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DWordProperty.java43 public final boolean mIsNotAWord; field in WordProperty
66 mIsNotAWord = isNotAWord; in WordProperty()
91 mIsNotAWord = isNotAWord; in WordProperty()
141 word.mIsNotAWord, in computeHashCode()
172 && mIsNotAWord == w.mIsNotAWord && mIsPossiblyOffensive == w.mIsPossiblyOffensive in equals()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DFusionDictionary.java90 boolean mIsNotAWord; // Only a shortcut field in FusionDictionary.PtNode
110 mIsNotAWord = isNotAWord; in PtNode()
121 mIsNotAWord = isNotAWord; in PtNode()
145 return mIsNotAWord; in getIsNotAWord()
225 mIsNotAWord = isNotAWord; in update()
391 currentPtNode.mIsNotAWord && isNotAWord, in add()
401 currentPtNode.mIsNotAWord, currentPtNode.mIsPossiblyOffensive, in add()
619 currentPtNode.mIsNotAWord, currentPtNode.mIsPossiblyOffensive); in next()
DVer4DictDecoder.java87 wordProperty.mIsNotAWord, in readDictionaryBinary()
DBinaryDictEncoderUtils.java548 node.mIsNotAWord, node.mIsPossiblyOffensive); in makePtNodeFlags()
/packages/inputmethods/LatinIME/tools/dicttool/src/com/android/inputmethod/latin/dicttool/
DDiff.java126 if (word0Property.mIsNotAWord != word1PtNode.getIsNotAWord()) { in diffWords()
128 + word0Property.mIsNotAWord + " -> " + word1PtNode.getIsNotAWord()); in diffWords()
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
DCombinedFormatUtils.java65 if (wordProperty.mIsNotAWord) { in formatWordProperty()
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
DBinaryDictionaryTests.java724 assertEquals(isNotAWord, wordProperty.mIsNotAWord); in testGetWordProperties()