Searched refs:dest6 (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/text/src/android/text/cts/ |
D | TextUtilsTest.java | 267 SpannableString dest6 = new SpannableString("exceptional test"); in testCopySpansFrom() local 268 TextUtils.copySpansFrom(source2, -1, source2.length(), Object.class, dest6, 0); in testCopySpansFrom() 269 spans = dest6.getSpans(0, dest6.length(), Object.class); in testCopySpansFrom() 271 dest6 = new SpannableString("exceptional test"); in testCopySpansFrom() 273 Object.class, dest6, 0); in testCopySpansFrom() 274 spans = dest6.getSpans(0, dest6.length(), Object.class); in testCopySpansFrom() 278 dest6 = new SpannableString("exceptional test"); in testCopySpansFrom() 279 TextUtils.copySpansFrom(source2, 0, -1, Object.class, dest6, 0); in testCopySpansFrom() 280 spans = dest6.getSpans(0, dest6.length(), Object.class); in testCopySpansFrom() 282 TextUtils.copySpansFrom(source2, 0, Integer.MAX_VALUE, Object.class, dest6, 0); in testCopySpansFrom() [all …]
|