HomeSort by relevance Sort by last modified time
    Searched refs:FLAG_HAS_BIGRAMS (Results 1 - 7 of 7) sorted by null

  /packages/inputmethods/LatinIME/native/jni/src/suggest/policyimpl/dictionary/
patricia_trie_reading_utils.h 69 return (flags & FLAG_HAS_BIGRAMS) != 0;
89 nodeFlags = hasBigrams ? (nodeFlags | FLAG_HAS_BIGRAMS) : nodeFlags;
115 static const NodeFlags FLAG_HAS_BIGRAMS;
patricia_trie_reading_utils.cpp 39 const PtReadingUtils::NodeFlags PtReadingUtils::FLAG_HAS_BIGRAMS = 0x04;
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
Ver3DictDecoder.java 167 if (0 != (flags & FormatSpec.FLAG_HAS_BIGRAMS)) {
249 if ((flags & FormatSpec.FLAG_HAS_BIGRAMS) != 0) {
FormatSpec.java 108 * | has bigrams ? 1 bit, 1 = yes, 0 = no : FLAG_HAS_BIGRAMS
155 * | IF FLAG_IS_TERMINAL && FLAG_HAS_BIGRAMS
233 static final int FLAG_HAS_BIGRAMS = 0x04;
DynamicBinaryDictIOUtils.java 357 (currentInfo.mFlags & FormatSpec.FLAG_HAS_BIGRAMS) != 0,
Ver4DictDecoder.java 241 if (0 != (flags & FormatSpec.FLAG_HAS_BIGRAMS)) {
BinaryDictEncoderUtils.java 646 if (hasBigrams) flags |= FormatSpec.FLAG_HAS_BIGRAMS;
    [all...]

Completed in 133 milliseconds