Home | History | Annotate | Download | only in text

Lines Matching defs:getSpans

620                             // Equivalent to a getSpans(start, end), but filling the 'spans' local
1754 ReplacementSpan[] spans = ((Spanned) text).getSpans(offset, offset,
2231 * Returns the same as <code>text.getSpans()</code>, except where
2236 * This is needed because of the special case that <code>getSpans()</code>
2260 return ((SpannableStringBuilder) text).getSpans(start, end, type, false);
2262 return text.getSpans(start, end, type);
2391 public <T> T[] getSpans(int start, int end, Class<T> type) {
2392 return mSpanned.getSpans(start, end, type);