Home | History | Annotate | Download | only in text

Lines Matching refs:sub

32      * are mirrored instead from <code>sub</code>, beginning at offset 0.
34 public static AlteredCharSequence make(CharSequence source, char[] sub,
37 return new AlteredSpanned(source, sub, substart, subend);
39 return new AlteredCharSequence(source, sub, substart, subend);
42 private AlteredCharSequence(CharSequence source, char[] sub,
45 mChars = sub;
50 /* package */ void update(char[] sub, int substart, int subend) {
51 mChars = sub;
60 private AlteredSpanned(CharSequence source, char[] sub,
62 super(source, sub, substart, subend);