HomeSort by relevance Sort by last modified time
    Searched full:escaped (Results 51 - 75 of 1174) sorted by null

1 23 4 5 6 7 8 91011>>

  /packages/apps/UnifiedEmail/src/org/apache/james/mime4j/
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/apps/UnifiedEmail/src/com/android/mail/lib/base/
Escaper.java 45 * Returns the escaped form of a given literal string.
59 * @param string the literal string to be escaped
60 * @return the escaped form of {@code string}
63 * escaped for any other reason
83 * <p>In all implementations the escaped Appendable should throw {@code NullPointerException} if
86 * @param out the underlying {@code Appendable} to append escaped output to
  /packages/apps/UnifiedEmail/src/com/google/android/mail/common/base/
Escaper.java 46 * Returns the escaped form of a given literal string.
60 * @param string the literal string to be escaped
61 * @return the escaped form of {@code string}
64 * escaped for any other reason
84 * <p>In all implementations the escaped Appendable should throw {@code NullPointerException} if
87 * @param out the underlying {@code Appendable} to append escaped output to
  /external/apache-http/src/org/apache/commons/codec/net/
URLCodec.java 105 * characters. Unsafe characters are escaped.
147 * original bytes. Escaped characters are converted back to their
186 * characters. Unsafe characters are escaped.
198 * original bytes. Escaped characters are converted back to their
212 * string charset. Unsafe characters are escaped.
232 * charset. Unsafe characters are escaped.
254 * specified encoding. Escaped characters are converted back
276 * string charset. Escaped characters are converted back to their
298 * escaped.
321 * Decodes a URL safe object into its original form. Escaped
    [all...]
BCodec.java 91 * Encodes a string into its Base64 form using the specified charset. Unsafe characters are escaped.
114 * Encodes a string into its Base64 form using the default charset. Unsafe characters are escaped.
131 * Decodes a Base64 string into its original form. Escaped characters are converted back to their original
154 * Encodes an object into its Base64 form using the default charset. Unsafe characters are escaped.
176 * Decodes a Base64 object into its original form. Escaped characters are converted back to their original
  /external/chromium/googleurl/src/
url_canon_host.cc 40 // + (allowed either escaped or unescaped, and unmodified)
41 // U (allowed escaped or unescaped but always unescaped if present in
42 // escaped form)
43 // E (allowed escaped or unescaped but always escaped if present in
45 // % (only allowed escaped in the input, will be unmodified).
60 // disallowed in the input, but they are all accepted escaped except for 0.
63 // Surprisingly, space is accepted in the input and always escaped.
67 // value to indicate that this character should be escaped. We are a little more
117 // the type holding them may be 16 bits. Escaped characters will be unescaped
    [all...]
url_canon_path.cc 41 // Pass through unchanged, whether escaped or unescaped. This doesn't
51 // This character must be escaped in the canonical output. Note that all
52 // escaped chars also have the "special" bit set so that the code that looks
74 // Dot is even more special, and the escaped version is handled specially by
94 // ...all the high-bit characters are escaped
277 // This escaped value shouldn't be escaped, copy it.
280 // Invalid escaped character, copy it and remember the error.
286 // Valid escaped character but we should keep it escaped. W
    [all...]
  /external/chromium_org/chrome/browser/chromeos/file_manager/
url_util_unittest.cc 20 // Pretty print the JSON escaped in the query string.
56 // The escaped query is hard to read. Pretty print the escaped JSON.
98 // The escaped query is hard to read. Pretty print the escaped JSON.
  /external/chromium_org/v8/test/mjsunit/
escape.js 36 // Check the unescape chars are not escaped
38 // Check spaces are escaped
40 // Check that null chars are escaped and do not terminate the string
51 // Check first 1000 chars individually for escaped/not escaped
  /external/v8/test/mjsunit/
escape.js 36 // Check the unescape chars are not escaped
38 // Check spaces are escaped
40 // Check that null chars are escaped and do not terminate the string
51 // Check first 1000 chars individually for escaped/not escaped
  /external/chromium/net/base/
data_url.cc 71 // (Spaces in a data URL should be escaped, which is handled below, so any
76 // For base64, we may have url-escaped whitespace which is not part
77 // of the data, and should be stripped. Otherwise, the escaped whitespace
escape.cc 45 // return an escaped string. If use_plus is true, spaces are converted
50 std::string escaped; local
51 escaped.reserve(text.length() * 3);
55 escaped.push_back('+');
57 escaped.push_back('%');
58 escaped.push_back(IntToHex(c >> 4));
59 escaped.push_back(IntToHex(c & 0xf));
61 escaped.push_back(c);
64 return escaped;
81 // are the ones labeled PASS (allow either escaped or unescaped) in the bi
    [all...]
  /external/chromium_org/net/base/
escape.cc 40 // return an escaped string. If use_plus is true, spaces are converted
45 std::string escaped; local
46 escaped.reserve(text.length() * 3);
50 escaped.push_back('+');
52 escaped.push_back('%');
53 escaped.push_back(IntToHex(c >> 4));
54 escaped.push_back(IntToHex(c & 0xf));
56 escaped.push_back(c);
59 return escaped;
76 // are the ones labeled PASS (allow either escaped or unescaped) in the bi
    [all...]
url_util.h 19 // value. Unsafe characters in the name and the value are escaped like
34 // pair is replaced. Unsafe characters in the name and the value are escaped
  /external/jsilver/src/com/google/clearsilver/jsilver/autoescape/
EscapeMode.java 93 * values was escaped or a constant, we return {@code ESCAPE_IS_CONSTANT}. This is how ClearSilver
96 * @return {@code ESCAPE_NONE} if either of the values was not escaped or constant. {@code
101 // If either of the values has not been escaped,
  /packages/providers/ContactsProvider/src/com/android/providers/contacts/util/
DbQueryUtils.java 113 * characters need to be matched literally, then they must be escaped like so:
121 * @param sb The StringBuilder to append the escaped value to.
122 * @param value The value to be escaped.
  /external/chromium_org/base/json/
string_escape.h 17 // Appends to |dest| an escaped version of |str|. Valid UTF-8 code units will
23 // Non-printing control characters will be escaped as \uXXXX sequences for
  /external/chromium_org/tools/grit/grit/gather/
muppet_strings_unittest.py 33 you?</LINEBREAK> <ESCAPED meaning="bingo">4 &lt; 6</ESCAPED>
  /external/chromium_org/v8/test/webkit/fast/js/
string-fontsize.js 30 // Check that the quotation mark is correctly escaped.
42 // Check that the quotation mark is correctly escaped.
string-link.js 30 // Check that the quotation mark is correctly escaped.
42 // Check that the quotation mark is correctly escaped.
  /external/markdown/MarkdownTest/Tests_2007/
Backslash escapes.html 1 <p>These should all get escaped:</p>
105 <p>These should get escaped, even though they're matching pairs for
  /packages/apps/Email/tests/src/com/android/email/mail/internet/
EmailHtmlUtilTest.java 44 // Successive spaces will be escaped as "&nbsp;"
48 // Newlines will be escaped as "<br>"
  /external/chromium_org/url/
url_canon_path.cc 15 // Pass through unchanged, whether escaped or unescaped. This doesn't
25 // This character must be escaped in the canonical output. Note that all
26 // escaped chars also have the "special" bit set so that the code that looks
48 // Dot is even more special, and the escaped version is handled specially by
68 // ...all the high-bit characters are escaped
251 // This escaped value shouldn't be escaped, copy it.
254 // Invalid escaped character, copy it and remember the error.
260 // Valid escaped character but we should keep it escaped. W
    [all...]
  /external/chromium/chrome/browser/download/
drag_download_util.h 28 // If the file name contains special characters, they need to be escaped
  /external/chromium_org/tools/gn/
token.cc 18 // it would have escaped the terminator.

Completed in 507 milliseconds

1 23 4 5 6 7 8 91011>>