Searched refs:csq (Results 1 – 4 of 4) sorted by relevance
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
D | UnicodeEscaper.java | 108 protected int nextEscapeIndex(CharSequence csq, int start, int end) { in nextEscapeIndex() argument 111 int cp = codePointAt(csq, index, end); in nextEscapeIndex() 269 public Appendable append(CharSequence csq) throws IOException { in escape() argument 270 return append(csq, 0, csq.length()); in escape() 274 public Appendable append(CharSequence csq, int start, int end) in escape() argument 276 checkNotNull(csq); in escape() 277 checkPositionIndexes(start, end, csq.length()); in escape() 282 completeSurrogatePair(csq.charAt(start++)); in escape() 288 char last = csq.charAt(end - 1); in escape() 296 out.append(escape(csq.subSequence(start, end).toString())); in escape()
|
D | CharEscapers.java | 55 @Override public Appendable append(CharSequence csq) throws IOException { 56 checkNotNull(csq); 57 out.append(csq); 61 @Override public Appendable append(CharSequence csq, int start, int end) 63 checkNotNull(csq); 64 out.append(csq, start, end);
|
D | CharEscaper.java | 85 @Override public Appendable append(CharSequence csq) throws IOException { in escape() 86 out.append(escape(csq.toString())); in escape() 90 @Override public Appendable append(CharSequence csq, int start, int end) throws IOException { in escape() argument 91 out.append(escape(csq.subSequence(start, end).toString())); in escape()
|
D | PercentEscaper.java | 174 protected int nextEscapeIndex(CharSequence csq, int index, int end) { in nextEscapeIndex() argument 176 char c = csq.charAt(index); in nextEscapeIndex()
|