Home | History | Annotate | Download | only in base

Lines Matching refs:escaped

44    * Returns the escaped form of a given literal string.
46 * @param string the literal string to be escaped
47 * @return the escaped form of {@code string}
77 * @param out the underlying {@code Appendable} to append escaped output to
96 char[] escaped = escape(c);
97 if (escaped == null) {
100 for (char e : escaped) {
110 * Returns the escaped form of a given literal string, starting at the given index. This method is
115 * @param s the literal string to be escaped
117 * @return the escaped form of {@code string}
180 * Returns the escaped form of the given character, or {@code null} if this character does not
181 * need to be escaped. If an empty array is returned, this effectively strips the input character
184 * <p>If the character does not need to be escaped, this method should return {@code null}, rather