Home | History | Annotate | Download | only in shadows

Lines Matching refs:source

13     public static Spanned fromHtml(String source) {
14 if (source == null) {
22 return new SpannedThatActsLikeString(source);
26 String source;
28 private SpannedThatActsLikeString(String source) {
29 this.source = source;
59 return source.length();
64 return source.charAt(i);
74 return source;
79 return source.equals(o);
84 return source != null ? source.hashCode() : 0;