Searched refs:srcLength (Results 1 – 2 of 2) sorted by relevance
/packages/inputmethods/LatinIME/tests/src/com/android/inputmethod/latin/common/ |
D | ResizableIntArrayTests.java | 218 final int srcLength = DEFAULT_CAPACITY; in testAppend() local 219 final ResizableIntArray src = new ResizableIntArray(srcLength); in testAppend() 220 for (int i = 0; i < srcLength; i++) { in testAppend() 241 dst.append(src, startPos, srcLength); in testAppend() 242 assertEquals("length after append", dstLength + srcLength, dst.getLength()); in testAppend() 245 dst.getPrimitiveArray().length >= dstLength + srcLength); in testAppend() 249 dst.getPrimitiveArray(), dstLength, srcLength); in testAppend() 251 dst.append(src, startPos, srcLength); in testAppend() 252 assertEquals("length after 2nd append", dstLength + srcLength * 2, dst.getLength()); in testAppend() 255 dst.getPrimitiveArray().length >= dstLength + srcLength * 2); in testAppend() [all …]
|
D | InputPointersTests.java | 162 final int srcLength = 100; in testAppend() local 164 for (int i = 0; i < srcLength; i++) { in testAppend() 189 startPos, srcLength); in testAppend() 190 assertEquals("size after append", dstLength + srcLength, dst.getPointerSize()); in testAppend() 192 dst.getPointerIds().length >= dstLength + srcLength); in testAppend() 203 dstLength, srcLength); in testAppend() 206 dstLength, srcLength); in testAppend() 209 dstLength, srcLength); in testAppend() 211 srcTimes.getPrimitiveArray(), startPos, dst.getTimes(), dstLength, srcLength); in testAppend() 227 final int srcLength = 100; in testAppendResizableIntArray() local [all …]
|