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