/bionic/libc/netbsd/nameser/ |
ns_samedomain.c | 56 int diff, i, escaped; local 64 escaped = 0; 68 if (escaped) 69 escaped = 0; 71 escaped = 1; 74 if (!escaped) 80 escaped = 0; 84 if (escaped) 85 escaped = 0; 87 escaped = 1 [all...] |
/external/regex-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/chromium/net/base/ |
escape_icu.cc | 15 bool use_plus, string16* escaped) { 23 escaped->assign(UTF8ToUTF16(EscapeQueryParamValue(encoded, use_plus)));
|
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/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x500/style/ |
X500NameTokenizer.java | 45 boolean escaped = false; 55 if (!escaped) 71 escaped = false; 75 if (escaped || quoted) 86 escaped = false; 90 escaped = true;
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/asn1/x509/ |
X509NameTokenizer.java | 46 boolean escaped = false; 56 if (!escaped) 72 escaped = false; 76 if (escaped || quoted) 87 escaped = false; 91 escaped = true;
|
/external/webkit/LayoutTests/fast/url/script-tests/ |
host.js | 6 // Spaces and some other characters should be escaped. 18 // escaped UTF-8 (the invalid character should be replaced with the 21 // ...This is the same as previous but with with escaped. 26 // Test that fullwidth escaped values are properly name-prepped, 28 // ...%41 in fullwidth = 'A' (also as escaped UTF-8 input) 31 // ...%00 in fullwidth should fail (also as escaped UTF-8 input) 36 // Mixed UTF-8 and escaped UTF-8 (narrow case) and UTF-16 and escaped 40 // Invalid escaped characters should fail and the percents should be 41 // escaped [all...] |
path.js | 19 // escaped dots should be unescaped and treated the same as dots 38 // the sourrounding text, not as escaped (in this case, UTF-8). 43 // Regular characters that are escaped should be unescaped 45 // Funny characters that are unescaped should be escaped 47 // Invalid characters that are escaped should cause a failure. 51 // Characters that are properly escaped should not have the case changed 54 // Funny characters that are unescaped should be escaped 59 // the path on an already-parsed URL) should be escaped. 65 // @ should be passed through unchanged (escaped or unescaped).
|
mailto.js | 14 // U+10300 input as UTF-16 surrogate pair, expected as escaped UTF-8 18 // Null character should be escaped to %00
|
/external/chromium/base/json/ |
string_escape_unittest.cc | 15 const char* escaped; member in struct:base::__anon3633::json_narrow_test_data 31 EXPECT_EQ(std::string(json_narrow_cases[i].escaped), out); 49 expected += json_narrow_cases[0].escaped; 59 const char* escaped; member in struct:base::__anon3634::json_wide_test_data 76 EXPECT_EQ(std::string(json_wide_cases[i].escaped), out); 94 expected += json_wide_cases[0].escaped;
|
/packages/providers/ContactsProvider/src/com/android/providers/contacts/ |
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/Email/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;
|
/prebuilts/tools/common/proguard/proguard4.7/bin/ |
proguard.bat | 7 REM you'll have to add escaped quotes around them, e.g.
|
proguardgui.bat | 7 REM you'll have to add escaped quotes around them, e.g.
|
retrace.bat | 7 REM you'll have to add escaped quotes around them, e.g.
|
/bionic/libc/netbsd/resolv/ |
res_comp.c | 215 int ch, escaped = 0; local 225 if (!escaped && periodchar(ch)) 227 if (escaped) 228 escaped = 0; 230 escaped = 1;
|
/frameworks/base/core/java/android/os/ |
PatternMatcher.java | 130 final boolean escaped = (c == '\\'); 131 if (escaped) { 137 if (!escaped && c == '.') {
|
/frameworks/base/tools/preload/ |
Record.java | 146 * @result the same field with any escaped characters replaced 153 String escaped = result.substring(offset+2, offset+6); local 156 result = String.format("%s%c%s", before, Integer.parseInt(escaped, 16), after);
|
/libcore/json/src/main/java/org/json/ |
JSONTokener.java | 243 char escaped = in.charAt(pos++); local 244 switch (escaped) { 272 return escaped;
|
/external/apache-http/src/org/apache/http/message/ |
BasicHeaderValueParser.java | 364 boolean escaped = false; 367 if (ch == '"' && !escaped) { 370 if (!qouted && !escaped && isOneOf(ch, delimiters)) { 374 if (escaped) { 375 escaped = false; 377 escaped = qouted && ch == '\\';
|
/external/chromium/net/tools/dump_cache/ |
url_to_filename_encoder_unittest.cc | 84 char escaped[100]; local 86 base::snprintf(escaped, sizeof(escaped), "%c%02X%c", escape, ch, escape); 87 Validate(string(1, ch), escaped); 146 ","; // The escape char has to be escaped 216 string escaped = base::StringPrintf("%%%02X", i); local 217 ValidateEncodeSame(unescaped, escaped);
|
/external/chromium/testing/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/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/libvpx/libvpx/third_party/googletest/src/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/llvm/utils/unittest/googletest/ |
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...] |