Searched refs:destOff (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/text/src/android/text/cts/ |
D | TextUtilsTest.java | 699 int destOff = 2; in testGetChars() local 700 TextUtils.getChars(mockGetChars, start, end, destResult, destOff); in testGetChars() 705 assertEquals(destOff, mockGetChars.ReadGetCharsParams().destoff); in testGetChars() 713 destOff = 0; in testGetChars() 714 TextUtils.getChars(mockCharSequence, start, end, destResult, destOff); in testGetChars() 717 assertEquals(mockCharSequence.charAt(start + i), destResult[destOff + i]); in testGetChars() 720 for (int i = destOff + (end - start); i < destOriginal.length; i++) { in testGetChars() 728 destOff = 2; in testGetChars() 729 TextUtils.getChars(mockCharSequence, start, end, destResult, destOff); in testGetChars() 731 for (int i = 0; i < destOff; i++) { in testGetChars() [all …]
|