Searched defs:dstOffset (Results 1 - 1 of 1) sorted by relevance

/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/makedict/
H A DFusionDictionary.java510 * I repeat: this method starts the comparison at 1 <> dstOffset + 1.
516 * @param dstOffset the offset in the right-hand side string.
519 private static int compareCharArrays(final int[] src, final int[] dst, int dstOffset) { argument
523 if (dstOffset + i >= dst.length) return i;
524 if (src[i] != dst[dstOffset + i]) return i;

Completed in 50 milliseconds