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 249 while (bigrams.size() < FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
250 // If bigrams.size() reaches FormatSpec.MAX_BIGRAMS_IN_A_PTNODE,
262 if (bigrams.size() >= FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
264 + " but max is " + FormatSpec.MAX_BIGRAMS_IN_A_PTNODE + ")");
FormatSpec.java 310 static final int MAX_BIGRAMS_IN_A_PTNODE = 10000;
AbstractDictDecoder.java 177 while (bigramCount++ < FormatSpec.MAX_BIGRAMS_IN_A_PTNODE) {
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictDecoderEncoderTests.java 111 final int maxBigrams = Math.min(sWords.size(), FormatSpec.MAX_BIGRAMS_IN_A_PTNODE - 1);

Completed in 26 milliseconds