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.java246 SpannableString dest5 = new SpannableString("longer content"); in testCopySpansFrom() local
247 TextUtils.copySpansFrom(source2, 0, source2.length(), Object.class, dest5, 0); in testCopySpansFrom()
248 spans = dest5.getSpans(0, 1, Object.class); in testCopySpansFrom()
251 dest5 = new SpannableString("longer content"); in testCopySpansFrom()
252 TextUtils.copySpansFrom(source2, 0, source2.length(), Object.class, dest5, 2); in testCopySpansFrom()
253 spans = dest5.getSpans(0, 1, Object.class); in testCopySpansFrom()
255 spans = dest5.getSpans(2, dest5.length(), Object.class); in testCopySpansFrom()
259 Object.class, dest5, dest5.length() - source2.length() + 2); in testCopySpansFrom()