Home | History | Annotate | Download | only in widget

Lines Matching defs:span

96         // getSpans should return the span
102 // span attributes should be correct
107 // should remove the span
124 final EmojiSpan span = mock(EmojiSpan.class);
127 spannable.setSpan(span, 1, 2, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
138 // verify the call to span callbacks are blocked
140 same(span), anyInt(), anyInt());
142 same(span), anyInt(), anyInt());
144 same(span), anyInt(), anyInt(), anyInt(), anyInt());
156 final QuoteSpan span = mock(QuoteSpan.class);
159 spannable.setSpan(span, 1, 2, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
170 // verify the call to span callbacks are not blocked
187 final EmojiSpan span = mock(EmojiSpan.class);
191 spannable.setSpan(span, 1, 2, Spanned.SPAN_EXCLUSIVE_EXCLUSIVE);
202 // verify the call to span callbacks are blocked
203 verify(spanWatcher, times(1)).onSpanRemoved(any(Spannable.class), same(span),