Home
last modified time | relevance | path

Searched refs:FLAG_IS_NOT_A_WORD (Results 1 – 4 of 4) sorted by relevance

/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
Dpatricia_trie_reading_utils.h62 return (flags & FLAG_IS_NOT_A_WORD) != 0; in isNotAWord()
91 nodeFlags = isNotAWord ? (nodeFlags | FLAG_IS_NOT_A_WORD) : nodeFlags; in createAndGetFlags()
129 static const NodeFlags FLAG_IS_NOT_A_WORD; variable
Dpatricia_trie_reading_utils.cpp43 const PtReadingUtils::NodeFlags PtReadingUtils::FLAG_IS_NOT_A_WORD = 0x02; member in latinime::PtReadingUtils
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DFormatSpec.java204 static final int FLAG_IS_NOT_A_WORD = 0x02; field in FormatSpec
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DBinaryDictEncoderUtils.java539 if (isNotAWord) flags |= FormatSpec.FLAG_IS_NOT_A_WORD; in makePtNodeFlags()