Home | History | Annotate | Download | only in method

Lines Matching refs:Visible

108                         sp.setSpan(new Visible(sp, this), start, start + count,
133 Visible[] old = sp.getSpans(0, sp.length(), Visible.class);
161 Visible[] visible = sp.getSpans(0, sp.length(), Visible.class);
163 for (int a = 0; a < visible.length; a++) {
164 if (sp.getSpanStart(visible[a].mTransformer) >= 0) {
165 st = sp.getSpanStart(visible[a]);
166 en = sp.getSpanEnd(visible[a]);
202 Visible[] visible = sp.getSpans(0, sp.length(), Visible.class);
203 nvisible = visible.length;
208 if (sp.getSpanStart(visible[i].mTransformer) >= 0) {
209 starts[i] = sp.getSpanStart(visible[i]);
210 ends[i] = sp.getSpanEnd(visible[i]);
217 boolean visible = false;
221 visible = true;
226 if (!visible) {
236 private static class Visible
240 public Visible(Spannable sp, PasswordTransformationMethod ptm) {