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

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtilsTests.java 141 int position = FormatSpec.NOT_VALID_WORD;
165 if (position != FormatSpec.NOT_VALID_WORD) {
201 assertEquals(FormatSpec.NOT_VALID_WORD, getWordPosition(file, word));
206 MoreAsserts.assertNotEqual(FormatSpec.NOT_VALID_WORD, getWordPosition(file, word));
268 MoreAsserts.assertNotEqual(FormatSpec.NOT_VALID_WORD, getWordPosition(file, "abcd"));
287 assertEquals(FormatSpec.NOT_VALID_WORD, getWordPosition(file, "ami"));
292 assertEquals(FormatSpec.NOT_VALID_WORD, getWordPosition(file, "abcd"));
377 MoreAsserts.assertNotEqual(FormatSpec.NOT_VALID_WORD, getWordPosition(file, word));
BinaryDictDecoderEncoderTests.java 562 assertEquals(FormatSpec.NOT_VALID_WORD != position, contained);
593 assertEquals(FormatSpec.NOT_VALID_WORD, dictDecoder.getTerminalPosition(longWord));
596 assertEquals(FormatSpec.NOT_VALID_WORD, dictDecoder.getTerminalPosition(null));
599 assertEquals(FormatSpec.NOT_VALID_WORD, dictDecoder.getTerminalPosition(""));
671 MoreAsserts.assertNotEqual(FormatSpec.NOT_VALID_WORD,
674 assertEquals(FormatSpec.NOT_VALID_WORD,
677 MoreAsserts.assertNotEqual(FormatSpec.NOT_VALID_WORD,
680 assertEquals(FormatSpec.NOT_VALID_WORD,
  /packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
Ver4DictUpdater.java 44 if (wordPos != FormatSpec.NOT_VALID_WORD) {
Ver3DictUpdater.java 62 if (wordPos != FormatSpec.NOT_VALID_WORD) {
BinaryDictIOUtils.java 163 * If no match is found, returns NOT_VALID_WORD.
174 if (word == null) return FormatSpec.NOT_VALID_WORD;
181 if (wordPos >= wordLen) return FormatSpec.NOT_VALID_WORD;
211 return FormatSpec.NOT_VALID_WORD;
218 return FormatSpec.NOT_VALID_WORD;
232 return FormatSpec.NOT_VALID_WORD;
238 return FormatSpec.NOT_VALID_WORD;
242 return FormatSpec.NOT_VALID_WORD;
FormatSpec.java 307 static final int NOT_VALID_WORD = -99;
DynamicBinaryDictIOUtils.java 246 if (position == FormatSpec.NOT_VALID_WORD) {

Completed in 39 milliseconds