Home | History | Annotate | Download | only in base

Lines Matching defs:append

231    * <p>Unlike {@link #escape(String)} it is permitted to append arbitrarily
249 * escaper.escape(sb).append(string);
252 * @param out the underlying {@code Appendable} to append escaped output to
269 public Appendable append(CharSequence csq) throws IOException {
270 return append(csq, 0, csq.length());
274 public Appendable append(CharSequence csq, int start, int end)
287 // append, and skip that character from the current escaping.
296 out.append(escape(csq.subSequence(start, end).toString()));
302 public Appendable append(char c) throws IOException {
318 out.append(c);
325 * Our last append operation ended halfway through a surrogate pair so we
340 out.append(pendingHighSurrogate);
341 out.append(c);
351 out.append(chars[n]);