Searched refs:destOff (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/text/src/android/text/cts/ |
D | TextUtilsTest.java | 898 int destOff = 2; in testGetChars() local 899 TextUtils.getChars(mockGetChars, start, end, destResult, destOff); in testGetChars() 904 assertEquals(destOff, mockGetChars.ReadGetCharsParams().destoff); in testGetChars() 912 destOff = 0; in testGetChars() 913 TextUtils.getChars(mockCharSequence, start, end, destResult, destOff); in testGetChars() 916 assertEquals(mockCharSequence.charAt(start + i), destResult[destOff + i]); in testGetChars() 919 for (int i = destOff + (end - start); i < destOriginal.length; i++) { in testGetChars() 927 destOff = 2; in testGetChars() 928 TextUtils.getChars(mockCharSequence, start, end, destResult, destOff); in testGetChars() 930 for (int i = 0; i < destOff; i++) { in testGetChars() [all …]
|