Searched refs:escaped (Results 1 - 11 of 11) sorted by relevance
/packages/apps/UnifiedEmail/src/com/android/mail/lib/base/ |
H A D | UnicodeEscaper.java | 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 [all...] |
H A D | CharEscaper.java | 43 * Returns the escaped form of a given literal string. 45 * @param string the literal string to be escaped 46 * @return the escaped form of {@code string} 76 * @param out the underlying {@code Appendable} to append escaped output to 95 char[] escaped = escape(c); 96 if (escaped == null) { 99 for (char e : escaped) { 109 * Returns the escaped form of a given literal string, starting at the given index. This method is 114 * @param s the literal string to be escaped 116 * @return the escaped for [all...] |
H A D | StringUtil.java | 941 // quotes can be escaped 'like this: ''', "like this: """, or 'like this: "' 1308 // We found an escaped character. Start slow escaping from there. 1310 char[] escaped = new char[chars.length]; 1311 System.arraycopy(chars, 0, escaped, 0, index); 1313 // Note: escaped[pos] = end of the escaped char array. 1318 escaped[pos++] = chars[i++]; 1373 escaped[pos++] = (char) charcode; 1383 escaped[pos++] = repl; 1395 System.arraycopy(chars, i, escaped, po [all...] |
/packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/ |
H A D | UnicodeEscaper.java | 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 [all...] |
H A D | CharEscaper.java | 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 for [all...] |
H A D | StringUtil.java | 942 // quotes can be escaped 'like this: ''', "like this: """, or 'like this: "' 1309 // We found an escaped character. Start slow escaping from there. 1311 char[] escaped = new char[chars.length]; 1312 System.arraycopy(chars, 0, escaped, 0, index); 1314 // Note: escaped[pos] = end of the escaped char array. 1319 escaped[pos++] = chars[i++]; 1374 escaped[pos++] = (char) charcode; 1384 escaped[pos++] = repl; 1396 System.arraycopy(chars, i, escaped, po [all...] |
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
H A D | ContactLookupKey.java | 92 boolean escaped = false; 101 escaped = true; 106 return escaped; 127 boolean escaped = false; 147 escaped = false; 150 escaped = true; 162 if (escaped) {
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/ |
H A D | BodyDescriptor.java | 180 boolean escaped = false;
277 if (!escaped) {
284 escaped = false;
290 if (escaped) {
293 escaped = !escaped;
297 if (escaped) {
300 escaped = false;
|
/packages/inputmethods/LatinIME/tools/make-keyboard-text/src/com/android/inputmethod/keyboard/tools/ |
H A D | MoreKeysResources.java | 201 final String escaped = escapeNonAscii(res.mValue); 202 if (escaped.length() == 0) { 205 formatter.outElement(String.format("\"%s\",", escaped));
|
/packages/apps/UnifiedEmail/src/com/android/mail/providers/ |
H A D | Message.java | 537 private static String[] unescapeAddresses(String[] escaped) { argument 538 final String[] unescaped = new String[escaped.length]; 539 for (int i = 0; i < escaped.length; i++) { 540 final String escapeMore = escaped[i].replace("<", "<").replace(">", ">");
|
/packages/apps/UnifiedEmail/src/org/apache/james/mime4j/codec/ |
H A D | EncoderUtil.java | 508 String escaped = str.replaceAll("[\\\\\"]", "\\\\$0"); 509 return "\"" + escaped + "\"";
|
Completed in 145 milliseconds