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

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputPointersTests.java 135 final InputPointers dstCopy = new InputPointers(DEFAULT_CAPACITY);
136 dstCopy.copy(dst);
141 dstCopy.getXCoordinates(), 0, dst.getXCoordinates(), 0, dstLen);
143 dstCopy.getYCoordinates(), 0, dst.getYCoordinates(), 0, dstLen);
145 dstCopy.getPointerIds(), 0, dst.getPointerIds(), 0, dstLen);
147 dstCopy.getTimes(), 0, dst.getTimes(), 0, dstLen);
154 dstCopy.getXCoordinates(), 0, dst.getXCoordinates(), 0, dstLen);
156 dstCopy.getYCoordinates(), 0, dst.getYCoordinates(), 0, dstLen);
158 dstCopy.getPointerIds(), 0, dst.getPointerIds(), 0, dstLen);
160 dstCopy.getTimes(), 0, dst.getTimes(), 0, dstLen)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
ResizableIntArrayTests.java 219 final ResizableIntArray dstCopy = new ResizableIntArray(dst.getLength());
220 dstCopy.copy(dst);
226 dstCopy.getPrimitiveArray(), 0, dst.getPrimitiveArray(), 0, dstLen);
234 dstCopy.getPrimitiveArray(), 0, dst.getPrimitiveArray(), 0, dstLen);
244 dstCopy.getPrimitiveArray(), 0, dst.getPrimitiveArray(), 0, dstLen);

Completed in 142 milliseconds