HomeSort by relevance Sort by last modified time
    Searched defs:ptNodeCount (Results 1 - 2 of 2) sorted by null

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
BinaryDictIOUtils.java 190 final int ptNodeCount = dictDecoder.readPtNodeCount();
192 for (int i = 0; i < ptNodeCount; ++i) {
232 * Writes a PtNodeCount to the stream.
235 * @param ptNodeCount the count.
239 static int writePtNodeCount(final OutputStream destination, final int ptNodeCount)
241 final int countSize = BinaryDictIOUtils.getPtNodeCountSize(ptNodeCount);
248 (ptNodeCount | FormatSpec.LARGE_PTNODE_ARRAY_SIZE_FIELD_SIZE_FLAG) : ptNodeCount;
BinaryDictEncoderUtils.java     [all...]

Completed in 1429 milliseconds