HomeSort by relevance Sort by last modified time
    Searched refs:dstLength (Results 1 - 3 of 3) sorted by null

  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/
InputPointersTests.java 148 final int dstLength = 50;
150 for (int i = 0; i < dstLength; i++) {
170 final int time = i * 4 + dstLength;
180 assertEquals("size after append zero", dstLength, dst.getPointerSize());
182 dstCopy.getXCoordinates(), startPos, dst.getXCoordinates(), startPos, dstLength);
184 dstCopy.getYCoordinates(), startPos, dst.getYCoordinates(), startPos, dstLength);
186 dstCopy.getPointerIds(), startPos, dst.getPointerIds(), startPos, dstLength);
188 dstCopy.getTimes(), startPos, dst.getTimes(), startPos, dstLength);
192 assertEquals("size after append", dstLength + srcLength, dst.getPointerSize());
194 dst.getPointerIds().length >= dstLength + srcLength)
    [all...]
  /packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/utils/
ResizableIntArrayTests.java 226 final int dstLength = DEFAULT_CAPACITY / 2;
227 for (int i = 0; i < dstLength; i++) {
236 assertEquals("length after append zero", dstLength, dst.getLength());
239 dst.getPrimitiveArray(), startPos, dstLength);
242 assertEquals("length after append", dstLength + srcLength, dst.getLength());
245 dst.getPrimitiveArray().length >= dstLength + srcLength);
247 dst.getPrimitiveArray(), startPos, dstLength);
249 dst.getPrimitiveArray(), dstLength, srcLength);
252 assertEquals("length after 2nd append", dstLength + srcLength * 2, dst.getLength());
255 dst.getPrimitiveArray().length >= dstLength + srcLength * 2)
    [all...]
  /external/tagsoup/src/org/ccil/cowan/tagsoup/
Parser.java     [all...]

Completed in 82 milliseconds