Home
last modified time | relevance | path

Searched refs:NOT_VALID_WORD (Results 1 – 3 of 3) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
DBinaryDictIOUtils.java171 if (word == null) return FormatSpec.NOT_VALID_WORD; in getTerminalPosition()
177 if (wordPos >= wordLen) return FormatSpec.NOT_VALID_WORD; in getTerminalPosition()
199 return currentInfo.isTerminal() ? ptNodePos : FormatSpec.NOT_VALID_WORD; in getTerminalPosition()
203 return FormatSpec.NOT_VALID_WORD; in getTerminalPosition()
211 return FormatSpec.NOT_VALID_WORD; in getTerminalPosition()
214 return FormatSpec.NOT_VALID_WORD; in getTerminalPosition()
DBinaryDictDecoderEncoderTests.java521 assertEquals(FormatSpec.NOT_VALID_WORD != position, contained);
554 assertEquals(FormatSpec.NOT_VALID_WORD, dictDecoder.getTerminalPosition(longWord));
557 assertEquals(FormatSpec.NOT_VALID_WORD, dictDecoder.getTerminalPosition(null));
560 assertEquals(FormatSpec.NOT_VALID_WORD, dictDecoder.getTerminalPosition(""));
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/makedict/
DFormatSpec.java241 static final int NOT_VALID_WORD = -99; field in FormatSpec