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

1 23 4 5 6 7 8 91011>>

  /libcore/luni/src/main/java/javax/xml/transform/stream/
FilePathToURI.java 22 // which ASCII characters need to be escaped
24 // the first hex character if a character needs to be escaped
26 // the second hex character if a character needs to be escaped
85 // record the fact that it's escaped
  /prebuilts/tools/common/proguard/proguard4.7/bin/
proguardgui.sh 7 # you'll have to add escaped quotes around them, e.g.
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
IETFUtils.java 31 boolean escaped = false;
36 // if it's an escaped hash string and not an actual encoding in string form
37 // we need to leave it escaped.
62 if (!escaped)
70 escaped = false;
72 else if (c == '\\' && !(escaped || quoted))
74 escaped = true;
79 if (c == ' ' && !escaped && !nonWhiteSpaceEncountered)
83 if (escaped && isHexDigit(c))
88 escaped = false
    [all...]
  /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;
  /external/chromium_org/third_party/boringssl/src/crypto/asn1/
charmap.pl 66 my $RFC2253_ESC = 1; # Character escaped with \
67 my $ESC_CTRL = 2; # Escaped control character
69 my $NOESC_QUOTE = 8; # Not escaped if quoted
71 my $RFC2253_FIRST_ESC = 0x20; # Escaped with \ if first character
72 my $RFC2253_LAST_ESC = 0x40; # Escaped with \ if last character
91 # Remaining RFC2253 escaped characters
  /external/chromium_org/tools/gn/
value.cc 127 std::string escaped = string_value_; local
129 ReplaceSubstringsAfterOffset(&escaped, 0, "\\$", "\\\\$");
130 ReplaceSubstringsAfterOffset(&escaped, 0, "\\\"", "\\\\\"");
133 ReplaceSubstringsAfterOffset(&escaped, 0, "$", "\\$");
134 ReplaceSubstringsAfterOffset(&escaped, 0, "\"", "\\\"");
135 return "\"" + escaped + "\"";
escape.cc 135 // All other invalid shell chars get backslash-escaped.
202 base::StackString<256> escaped; local
203 EscapeStringToString(str, options, &escaped.container(), NULL);
204 if (!escaped->empty())
205 out.write(escaped->data(), escaped->size());
  /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 110 * characters. Unsafe characters are escaped.
152 * original bytes. Escaped characters are converted back to their
191 * characters. Unsafe characters are escaped.
203 * original bytes. Escaped characters are converted back to their
217 * string charset. Unsafe characters are escaped.
237 * charset. Unsafe characters are escaped.
259 * specified encoding. Escaped characters are converted back
281 * string charset. Escaped characters are converted back to their
303 * escaped.
326 * Decodes a URL safe object into its original form. Escaped
    [all...]
BCodec.java 96 * Encodes a string into its Base64 form using the specified charset. Unsafe characters are escaped.
119 * Encodes a string into its Base64 form using the default charset. Unsafe characters are escaped.
136 * Decodes a Base64 string into its original form. Escaped characters are converted back to their original
159 * Encodes an object into its Base64 form using the default charset. Unsafe characters are escaped.
181 * Decodes a Base64 object into its original form. Escaped characters are converted back to their original
  /external/chromium_org/chrome/browser/chromeos/file_manager/
url_util_unittest.cc 20 // Pretty print the JSON escaped in the query string.
53 // The escaped query is hard to read. Pretty print the escaped JSON.
101 // 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/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/chromium_org/sandbox/win/src/
filesystem_policy.h 106 // Corrects global paths to have a correctly escaped NT prefix at the
107 // beginning. If the name has no NT prefix (either normal or escaped)
108 // add the escaped form to the string
  /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/third_party/libaddressinput/src/java/src/com/android/i18n/addressinput/
FormatInterpreter.java 66 // Skips un-escaped characters and new lines.
220 * Escaped tokens correspond to either new line or address fields.
226 boolean escaped = false;
228 if (escaped) {
229 escaped = false;
238 escaped = true;
  /external/chromium_org/v8/src/compiler/
graph-visualizer.cc 90 class Escaped {
92 explicit Escaped(const OStringStream& os) : str_(os.c_str()) {}
94 friend OStream& operator<<(OStream& os, const Escaped& e) {
158 os_ << " label=\"{{#" << node->id() << ":" << Escaped(label);
193 os_ << "|" << Escaped(upper) << "|" << Escaped(lower);
  /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
  /external/pcre/dist/doc/
perltest.txt 21 characters, these have to be escaped. For this reason, all such characters in
22 the Perl-compatible testinput1 file are escaped so that they can be used for

Completed in 1285 milliseconds

1 23 4 5 6 7 8 91011>>