Home | History | Annotate | Download | only in base

Lines Matching refs:escape

38  * #escape(char)} method.
50 @Override public String escape(String string) {
55 if (escape(string.charAt(index)) != null) {
70 * <p>The escaping behavior is identical to that of {@link #escape(String)}, so the following code
71 * is always equivalent to {@code escaper.escape(string)}: <pre> {@code
74 * escaper.escape(sb).append(string);
81 @Override public Appendable escape(final Appendable out) {
86 out.append(escape(csq.toString()));
91 out.append(escape(csq.subSequence(start, end).toString()));
96 char[] escaped = escape(c);
111 * called by the {@link #escape(String)} method when it discovers that escaping is required. It is
134 char[] r = escape(s.charAt(index));
191 * @param c the character to escape if necessary
194 protected abstract char[] escape(char c);
209 * The amount of padding to use when growing the escape buffer.