Searched refs:dstOffset (Results 1 - 2 of 2) 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;
/packages/apps/Exchange/src/com/android/exchange/utility/
H A DCalendarUtilities.java743 int dstOffset = tz.getDSTSavings();
744 setLong(tziBytes, MSFT_TIME_ZONE_DAYLIGHT_BIAS_OFFSET, - dstOffset / MINUTES);

Completed in 2129 milliseconds