Searched refs:dest6 (Results 1 – 1 of 1) sorted by relevance
/cts/tests/tests/text/src/android/text/cts/ |
D | TextUtilsTest.java | 447 SpannableString dest6 = new SpannableString("exceptional test"); in testCopySpansFrom() local 448 TextUtils.copySpansFrom(source2, -1, source2.length(), Object.class, dest6, 0); in testCopySpansFrom() 449 spans = dest6.getSpans(0, dest6.length(), Object.class); in testCopySpansFrom() 451 dest6 = new SpannableString("exceptional test"); in testCopySpansFrom() 453 Object.class, dest6, 0); in testCopySpansFrom() 454 spans = dest6.getSpans(0, dest6.length(), Object.class); in testCopySpansFrom() 458 dest6 = new SpannableString("exceptional test"); in testCopySpansFrom() 459 TextUtils.copySpansFrom(source2, 0, -1, Object.class, dest6, 0); in testCopySpansFrom() 460 spans = dest6.getSpans(0, dest6.length(), Object.class); in testCopySpansFrom() 462 TextUtils.copySpansFrom(source2, 0, Integer.MAX_VALUE, Object.class, dest6, 0); in testCopySpansFrom() [all …]
|