Searched refs:recip (Results 1 – 2 of 2) sorted by relevance
/aosp14/frameworks/base/core/java/android/text/ |
H A D | SpannableStringInternal.java | 447 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); in sendSpanAdded() local 448 int n = recip.length; in sendSpanAdded() 451 recip[i].onSpanAdded((Spannable) this, what, start, end); in sendSpanAdded() 457 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); in sendSpanRemoved() local 458 int n = recip.length; in sendSpanRemoved() 461 recip[i].onSpanRemoved((Spannable) this, what, start, end); in sendSpanRemoved() 467 SpanWatcher[] recip = getSpans(Math.min(s, st), Math.max(e, en), in sendSpanChanged() local 469 int n = recip.length; in sendSpanChanged() 472 recip[i].onSpanChanged((Spannable) this, what, s, e, st, en); in sendSpanChanged()
|
H A D | SpannableStringBuilder.java | 1284 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); in sendSpanAdded() local 1285 int n = recip.length; in sendSpanAdded() 1288 recip[i].onSpanAdded(this, what, start, end); in sendSpanAdded() 1293 SpanWatcher[] recip = getSpans(start, end, SpanWatcher.class); in sendSpanRemoved() local 1294 int n = recip.length; in sendSpanRemoved() 1297 recip[i].onSpanRemoved(this, what, start, end); in sendSpanRemoved()
|