Home | History | Annotate | Download | only in base

Lines Matching defs:escaped

60    * Returns the escaped form of the given Unicode code point, or {@code null}
61 * if this code point does not need to be escaped. When called as part of an
68 * <p>If the character does not need to be escaped, this method should return
92 * supplementary range are either all escaped or all unescaped, this method
121 * Returns the escaped form of a given literal string.
128 * calling this method or use an escaped {@link Appendable} (as returned by
137 * @param string the literal string to be escaped
138 * @return the escaped form of {@code string}
152 * Returns the escaped form of a given literal string, starting at the given
161 * @param s the literal string to be escaped
163 * @return the escaped form of {@code string}
185 char[] escaped = escape(cp);
187 if (escaped != null) {
192 int sizeNeeded = destIndex + charsSkipped + escaped.length;
202 if (escaped.length > 0) {
203 System.arraycopy(escaped, 0, dest, destIndex, escaped.length);
204 destIndex += escaped.length;
206 // If we dealt with an escaped character, reset the unescaped range.
212 // Process trailing unescaped characters - no need to account for escaped
252 * @param out the underlying {@code Appendable} to append escaped output to
314 char[] escaped = escape(c);
315 if (escaped != null) {
316 outputChars(escaped);
335 char[] escaped = escape(
337 if (escaped != null) {
338 outputChars(escaped);