HomeSort by relevance Sort by last modified time
    Searched refs:escaped (Results 1 - 25 of 96) sorted by null

1 2 3 4

  /bionic/libc/dns/nameser/
ns_samedomain.c 57 int diff, escaped; local
65 escaped = 0;
69 if (escaped)
70 escaped = 0;
72 escaped = 1;
75 if (!escaped)
81 escaped = 0;
85 if (escaped)
86 escaped = 0;
88 escaped = 1
    [all...]
  /external/chromium_org/third_party/re2/re2/testing/
exhaustive2_test.cc 22 // Test escaped versions of regexp syntax.
25 vector<string> escaped = alphabet; local
26 for (int i = 0; i < escaped.size(); i++)
27 escaped[i] = "\\" + escaped[i];
28 ExhaustiveTest(1, 1, escaped, RegexpGenerator::EgrepOps(),
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/
X500NameTokenizer.java 45 boolean escaped = false;
55 if (!escaped)
60 escaped = false;
64 if (escaped || quoted)
67 escaped = false;
72 escaped = true;
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...]
  /external/chromium_org/ui/gfx/
text_utils.cc 15 bool escaped = false; local
27 if (c != accelerator_char || escaped) {
29 if (escaped && c != accelerator_char) {
35 escaped = false;
37 escaped = true;
  /external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/
X509NameTokenizer.java 46 boolean escaped = false;
56 if (!escaped)
61 escaped = false;
65 if (escaped || quoted)
68 escaped = false;
73 escaped = true;
  /external/chromium_org/chrome/browser/
chrome_process_finder_win.cc 62 // return an escaped string. If use_plus is true, spaces are converted
67 std::string escaped; local
68 escaped.reserve(text.length() * 3);
72 escaped.push_back('+');
74 escaped.push_back('%');
75 escaped.push_back(IntToHex(c >> 4));
76 escaped.push_back(IntToHex(c & 0xf));
78 escaped.push_back(c);
81 return escaped;
  /external/chromium_org/base/json/
string_escape_unittest.cc 16 const char* escaped; member in struct:base::__anon6929
32 EXPECT_EQ(std::string(cases[i].escaped), out);
37 EXPECT_EQ(std::string(cases[i].escaped), out);
42 EXPECT_EQ("\"" + std::string(cases[i].escaped) + "\"", fooout);
64 expected += cases[0].escaped;
74 const char* escaped; member in struct:base::__anon6930
89 EXPECT_EQ(std::string(cases[i].escaped), out);
93 EXPECT_EQ("\"" + std::string(cases[i].escaped) + "\"", out);
114 expected += cases[0].escaped;
159 const char* escaped; member in struct:base::__anon6931
    [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...]
  /bionic/libc/dns/resolv/
res_comp.c 215 int ch, escaped = 0; local
225 if (!escaped && periodchar(ch))
227 if (escaped)
228 escaped = 0;
230 escaped = 1;
  /external/chromium_org/tools/gn/
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());
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 + "\"";
  /external/chromium_org/chrome/browser/chromeos/file_system_provider/
mount_path_util.cc 38 std::string escaped; local
42 base::StringAppendF(&escaped, "%%%02X", c);
44 escaped.push_back(c);
47 return escaped;
  /external/apache-http/src/org/apache/http/message/
BasicHeaderValueParser.java 369 boolean escaped = false;
372 if (ch == '"' && !escaped) {
375 if (!qouted && !escaped && isOneOf(ch, delimiters)) {
379 if (escaped) {
380 escaped = false;
382 escaped = qouted && ch == '\\';
  /external/chromium_org/storage/browser/fileapi/
file_system_url.cc 110 // behavior, where the path is escaped by KURL::encodeWithURLEscapeSequences
112 std::string escaped = net::EscapeQueryParamValue(
115 ReplaceSubstringsAfterOffset(&escaped, 0, "%2F", "/");
116 url.append(escaped);
  /external/chromium_org/net/tools/dump_cache/
url_to_filename_encoder_unittest.cc 86 char escaped[100]; local
88 base::snprintf(escaped, sizeof(escaped), "%c%02X%c", escape, ch, escape);
89 Validate(string(1, ch), escaped);
148 ","; // The escape char has to be escaped
219 string escaped = base::StringPrintf("%%%02X", i); local
220 ValidateEncodeSame(unescaped, escaped);
  /external/chromium_org/third_party/mesa/src/src/gtest/src/
gtest-port.cc 201 // Returns true iff the given atom (specified by escaped and pattern)
203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
204 if (escaped) { // "\\p" where p is pattern_char.
289 // expression. The regex atom is defined as c if escaped is false,
296 bool escaped, char c, char repeat, const char* regex,
313 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
332 const bool escaped = *regex == '\\'; local
333 if (escaped)
340 escaped, regex[0], regex[1], regex + 2, str);
345 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/chromium_org/v8/test/mjsunit/regress/
regress-latin-1.js 41 var escaped = base;
45 escaped = '\\' + base;
48 base_result = new RegExp('(' + escaped + ')\\1', 'i').exec(base + base);
50 lo_result = new RegExp('(' + escaped + ')\\1', 'i').exec(base + lo);
  /external/llvm/utils/unittest/googletest/src/
gtest-port.cc 201 // Returns true iff the given atom (specified by escaped and pattern)
203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
204 if (escaped) { // "\\p" where p is pattern_char.
289 // expression. The regex atom is defined as c if escaped is false,
296 bool escaped, char c, char repeat, const char* regex,
313 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
332 const bool escaped = *regex == '\\'; local
333 if (escaped)
340 escaped, regex[0], regex[1], regex + 2, str);
345 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/mesa3d/src/gtest/src/
gtest-port.cc 201 // Returns true iff the given atom (specified by escaped and pattern)
203 bool AtomMatchesChar(bool escaped, char pattern_char, char ch) {
204 if (escaped) { // "\\p" where p is pattern_char.
289 // expression. The regex atom is defined as c if escaped is false,
296 bool escaped, char c, char repeat, const char* regex,
313 if (str[i] == '\0' || !AtomMatchesChar(escaped, c, str[i]))
332 const bool escaped = *regex == '\\'; local
333 if (escaped)
340 escaped, regex[0], regex[1], regex + 2, str);
345 return (*str != '\0') && AtomMatchesChar(escaped, *regex, *str) &
    [all...]
  /external/owasp/sanitizer/src/tests/org/owasp/html/
HtmlLexerTest.java 135 String escaped = input.substring(t.start, t.end) local
141 out.append(" [").append(escaped).append("] : ")
  /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/tools/grit/grit/gather/
admin_template.py 27 - translateable strings do not need to be escaped.
  /external/doclava/src/com/google/doclava/
FieldInfo.java 229 char escaped = 0; local
284 escaped = 0;
292 escaped <<= 4;
294 escaped |= c - '0';
296 escaped |= 10 + (c - 'a');
298 escaped |= 10 + (c - 'A');
304 buf.append(escaped);
  /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

Completed in 1076 milliseconds

1 2 3 4