Home
last modified time | relevance | path

Searched refs:dest5 (Results 1 – 1 of 1) sorted by relevance

/cts/tests/tests/text/src/android/text/cts/
DTextUtilsTest.java426 SpannableString dest5 = new SpannableString("longer content"); in testCopySpansFrom() local
427 TextUtils.copySpansFrom(source2, 0, source2.length(), Object.class, dest5, 0); in testCopySpansFrom()
428 spans = dest5.getSpans(0, 1, Object.class); in testCopySpansFrom()
431 dest5 = new SpannableString("longer content"); in testCopySpansFrom()
432 TextUtils.copySpansFrom(source2, 0, source2.length(), Object.class, dest5, 2); in testCopySpansFrom()
433 spans = dest5.getSpans(0, 1, Object.class); in testCopySpansFrom()
435 spans = dest5.getSpans(2, dest5.length(), Object.class); in testCopySpansFrom()
439 Object.class, dest5, dest5.length() - source2.length() + 2); in testCopySpansFrom()