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

/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/
H A DInputPointers.java109 * Shift to the left by elementCount, discarding elementCount pointers at the start.
110 * @param elementCount how many elements to shift.
112 public void shift(final int elementCount) { argument
113 mXCoordinates.shift(elementCount);
114 mYCoordinates.shift(elementCount);
115 mPointerIds.shift(elementCount);
116 mTimes.shift(elementCount);
/packages/inputmethods/LatinIME/java/src/com/android/inputmethod/latin/utils/
H A DResizableIntArray.java136 * Shift to the left by elementCount, discarding elementCount pointers at the start.
137 * @param elementCount how many elements to shift.
139 public void shift(final int elementCount) { argument
140 System.arraycopy(mArray, elementCount, mArray, 0, mLength - elementCount);
141 mLength -= elementCount;

Completed in 70 milliseconds