/external/pcre/pcrecpp/ |
D | pcrecpp.cc | 268 /*static*/ string RE::QuoteMeta(const StringPiece& unquoted) { in QuoteMeta() argument 279 for (int ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta() 282 if (unquoted[ii] == '\0') { in QuoteMeta() 284 } else if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 285 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 286 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 287 unquoted[ii] != '_' && in QuoteMeta() 291 !(unquoted[ii] & 128)) { in QuoteMeta() 293 result += unquoted[ii]; in QuoteMeta() 295 result += unquoted[ii]; in QuoteMeta()
|
D | pcrecpp_unittest.cc | 488 // the original unquoted string. 489 static void TestQuoteMeta(string unquoted, RE_Options options = RE_Options()) { in TestQuoteMeta() argument 490 string quoted = RE::QuoteMeta(unquoted); in TestQuoteMeta() 492 CHECK(re.FullMatch(unquoted)); in TestQuoteMeta() 496 // quoted, should not generally match a string the unquoted string does. 497 static void NegativeTestQuoteMeta(string unquoted, string should_not_match, in NegativeTestQuoteMeta() argument 499 string quoted = RE::QuoteMeta(unquoted); in NegativeTestQuoteMeta()
|
/external/regex-re2/util/ |
D | pcre.cc | 412 string PCRE::QuoteMeta(const StringPiece& unquoted) { in QuoteMeta() argument 414 result.reserve(unquoted.size() << 1); in QuoteMeta() 423 for (int ii = 0; ii < unquoted.length(); ++ii) { in QuoteMeta() 426 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 427 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 428 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 429 unquoted[ii] != '_' && in QuoteMeta() 433 !(unquoted[ii] & 128)) { in QuoteMeta() 434 if (unquoted[ii] == '\0') { // Special handling for null chars. in QuoteMeta() 441 result += unquoted[ii]; in QuoteMeta()
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/escape/ |
D | HtmlEscapeFunction.java | 50 // In unquoted HTML attributes, strip out control characters also, as they could 64 * unquoted HTML attribute. 66 * If the string is unquoted, we strip out all characters 0 - 0x1f and 0x7f for security reasons.
|
D | JsEscapeFunction.java | 57 * unquoted JS attribute (like onClick or onMouseover).
|
D | StyleEscapeFunction.java | 70 * unquoted style attribute.
|
/external/regex-re2/re2/ |
D | re2.cc | 425 string RE2::QuoteMeta(const StringPiece& unquoted) { in QuoteMeta() argument 427 result.reserve(unquoted.size() << 1); in QuoteMeta() 436 for (int ii = 0; ii < unquoted.length(); ++ii) { in QuoteMeta() 439 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 440 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 441 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 442 unquoted[ii] != '_' && in QuoteMeta() 446 !(unquoted[ii] & 128)) { in QuoteMeta() 447 if (unquoted[ii] == '\0') { // Special handling for null chars. in QuoteMeta() 457 result += unquoted[ii]; in QuoteMeta()
|
/external/regex-re2/re2/testing/ |
D | re2_test.cc | 383 // the original unquoted string. 384 static void TestQuoteMeta(string unquoted, in TestQuoteMeta() argument 386 string quoted = RE2::QuoteMeta(unquoted); in TestQuoteMeta() 388 EXPECT_TRUE_M(RE2::FullMatch(unquoted, re), in TestQuoteMeta() 389 "Unquoted='" + unquoted + "', quoted='" + quoted + "'."); in TestQuoteMeta() 393 // the original unquoted string. 394 static void NegativeTestQuoteMeta(string unquoted, string should_not_match, in NegativeTestQuoteMeta() argument 396 string quoted = RE2::QuoteMeta(unquoted); in NegativeTestQuoteMeta() 399 "Unquoted='" + unquoted + "', quoted='" + quoted + "'."); in NegativeTestQuoteMeta()
|
/external/snakeyaml/src/test/resources/pyyaml/ |
D | spec-02-18.data | 2 This unquoted scalar
|
/external/snakeyaml/src/test/resources/specification/ |
D | example2_18.yaml | 2 This unquoted scalar
|
/external/llvm/test/YAMLParser/ |
D | spec-02-18.test | 4 This unquoted scalar
|
/external/apache-http/src/org/apache/http/impl/cookie/ |
D | NetscapeDraftSpec.java | 114 * character may be present in unquoted cookie value or unquoted
|
/external/jsilver/src/com/google/clearsilver/jsilver/functions/html/ |
D | HtmlUrlValidateFunction.java | 34 * isUnquoted should be true if the URL appears in an unquoted attribute. like: <a href=<?cs
|
/external/bison/m4/ |
D | warn-on-use.m4 | 30 dnl FIXME: gl_Symbol must be used unquoted until we can assume
|
D | warnings.m4 | 23 # FIXME: gl_Warn must be used unquoted until we can assume Autoconf
|
/external/e2fsprogs/lib/blkid/ |
D | tag.c | 217 * parse_token, because that will end an unquoted value at a space, while 218 * this will assume that an unquoted value is the rest of the token (e.g.
|
/external/icu/icu4c/source/tools/genrb/ |
D | read.c | 224 warning(lineCount, "Mixing quoted and unquoted strings"); in getStringToken() 235 * quoted and unquoted strings in getStringToken()
|
/external/icu/icu4c/source/test/intltest/ |
D | tokiter.h | 34 * line, beginning with the first unquoted '#', are recognized.
|
/external/icu/icu4c/source/i18n/ |
D | decimalformatpattern.cpp | 324 // Process unquoted characters seen in prefix or suffix in applyPatternWithoutExpandAffix() 329 // they are illegal if unquoted. in applyPatternWithoutExpandAffix() 443 // Unquoted, non-special characters fall through to here, as in applyPatternWithoutExpandAffix()
|
/external/strace/m4/ |
D | warnings.m4 | 24 # FIXME: gl_Warn must be used unquoted until we can assume Autoconf
|
/external/owasp/sanitizer/lib/htmlparser-1.3/doc/ |
D | tokenization.txt | 392 Switch to the attribute value (unquoted) state and reconsume 411 value. Switch to the attribute value (unquoted) state. 452 8.2.4.12 Attribute value (unquoted) state 480 value. Stay in the attribute value (unquoted) state.
|
/external/chromium-trace/catapult/devil/devil/android/ |
D | flag_changer_test.py | 62 # Start with an unquoted flag, check that it's quoted as expected.
|
/external/libchrome/base/ |
D | command_line_unittest.cc | 49 FILE_PATH_LITERAL("unquoted arg-with-space")}; in TEST() 102 EXPECT_EQ(FILE_PATH_LITERAL("unquoted arg-with-space"), *iter); in TEST()
|
/external/llvm/lib/MC/ |
D | MCSectionELF.cpp | 42 if (*B == '"') // Unquoted " in printName()
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
D | MCSectionELF.cpp | 50 if (*b == '"') // Unquoted " in PrintSwitchToSection()
|