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

  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
Ver3DictDecoder.java 171 if (bigrams.size() >= FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
173 + " but max is " + FormatSpec.MAX_BIGRAMS_IN_A_PTNODE + ")");
251 while (bigramCount++ < FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
266 if (bigramCount >= FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
Ver4DictDecoder.java 245 while (bigrams.size() < FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
246 // If bigrams.size() reaches FormatSpec.MAX_BIGRAMS_IN_A_PTNODE,
258 if (bigrams.size() >= FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
260 + " but max is " + FormatSpec.MAX_BIGRAMS_IN_A_PTNODE + ")");
FormatSpec.java 298 static final int MAX_BIGRAMS_IN_A_PTNODE = 10000;
AbstractDictDecoder.java 176 while (bigramCount++ < FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictDecoderEncoderTests.java 108 final int maxBigrams = Math.min(sWords.size(), FormatSpec.MAX_BIGRAMS_IN_A_PTNODE - 1);

Completed in 80 milliseconds