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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
FormatSpec.java 70 * | has bigrams ? 1 bit, 1 = yes, 0 = no : FLAG_HAS_BIGRAMS
109 * | IF FLAG_IS_TERMINAL && FLAG_HAS_BIGRAMS
186 static final int FLAG_HAS_BIGRAMS = 0x04;
BinaryDictIOUtils.java 367 if ((flags & FormatSpec.FLAG_HAS_BIGRAMS) != 0) {
    [all...]
BinaryDictInputOutput.java 785 if (hasBigrams) flags |= FormatSpec.FLAG_HAS_BIGRAMS;
    [all...]
  /packages/inputmethods/LatinIME/native/jni/src/
binary_format.h 44 static const int FLAG_HAS_BIGRAMS = 0x04;
380 if (FLAG_HAS_BIGRAMS & flags) {
    [all...]
bigram_dictionary.cpp 157 if (0 == (flags & BinaryFormat::FLAG_HAS_BIGRAMS)) return 0;

Completed in 534 milliseconds