Home
last modified time | relevance | path

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

/packages/inputmethods/LatinIME/native/jni/src/dictionary/structure/pt_common/
Dpatricia_trie_reading_utils.h74 return (flags & FLAG_HAS_BIGRAMS) != 0; in hasBigrams()
94 nodeFlags = hasBigrams ? (nodeFlags | FLAG_HAS_BIGRAMS) : nodeFlags; in createAndGetFlags()
128 static const NodeFlags FLAG_HAS_BIGRAMS; variable
Dpatricia_trie_reading_utils.cpp41 const PtReadingUtils::NodeFlags PtReadingUtils::FLAG_HAS_BIGRAMS = 0x04; member in latinime::PtReadingUtils
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DFormatSpec.java203 static final int FLAG_HAS_BIGRAMS = 0x04; field in FormatSpec
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DBinaryDictEncoderUtils.java538 if (hasBigrams) flags |= FormatSpec.FLAG_HAS_BIGRAMS; in makePtNodeFlags()