Searched refs:dest5 (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/text/src/android/text/cts/ |
D | TextUtilsTest.java | 425 SpannableString dest5 = new SpannableString("longer content"); in testCopySpansFrom() local 426 TextUtils.copySpansFrom(source2, 0, source2.length(), Object.class, dest5, 0); in testCopySpansFrom() 427 spans = dest5.getSpans(0, 1, Object.class); in testCopySpansFrom() 430 dest5 = new SpannableString("longer content"); in testCopySpansFrom() 431 TextUtils.copySpansFrom(source2, 0, source2.length(), Object.class, dest5, 2); in testCopySpansFrom() 432 spans = dest5.getSpans(0, 1, Object.class); in testCopySpansFrom() 434 spans = dest5.getSpans(2, dest5.length(), Object.class); in testCopySpansFrom() 438 Object.class, dest5, dest5.length() - source2.length() + 2); in testCopySpansFrom()
|