Home | History | Annotate | Download | only in text

Lines Matching refs:source

2  * Copyright (C) 2006 The Android Open Source Project
29 public SpannedString(CharSequence source) {
30 super(source, 0, source.length());
33 private SpannedString(CharSequence source, int start, int end) {
34 super(source, start, end);
41 public static SpannedString valueOf(CharSequence source) {
42 if (source instanceof SpannedString) {
43 return (SpannedString) source;
45 return new SpannedString(source);