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