/external/pcre/dist/ |
D | pcrecpp.cc | 466 /*static*/ string RE::QuoteMeta(const StringPiece& unquoted) { in QuoteMeta() argument 477 for (int ii = 0; ii < unquoted.size(); ++ii) { in QuoteMeta() 480 if (unquoted[ii] == '\0') { in QuoteMeta() 482 } else if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') && in QuoteMeta() 483 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') && in QuoteMeta() 484 (unquoted[ii] < '0' || unquoted[ii] > '9') && in QuoteMeta() 485 unquoted[ii] != '_' && in QuoteMeta() 489 !(unquoted[ii] & 128)) { in QuoteMeta() 491 result += unquoted[ii]; in QuoteMeta() 493 result += unquoted[ii]; in QuoteMeta()
|
D | pcrecpp_unittest.cc | 486 static void TestQuoteMeta(string unquoted, RE_Options options = RE_Options()) { in TestQuoteMeta() argument 487 string quoted = RE::QuoteMeta(unquoted); in TestQuoteMeta() 489 CHECK(re.FullMatch(unquoted)); in TestQuoteMeta() 494 static void NegativeTestQuoteMeta(string unquoted, string should_not_match, in NegativeTestQuoteMeta() argument 496 string quoted = RE::QuoteMeta(unquoted); in NegativeTestQuoteMeta()
|
D | pcrecpp.h | 626 static string QuoteMeta(const StringPiece& unquoted);
|
/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()
|
D | pcre.h | 440 static string QuoteMeta(const StringPiece& unquoted);
|
/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()
|
D | re2.h | 408 static string QuoteMeta(const StringPiece& unquoted);
|
/external/llvm/test/YAMLParser/ |
D | spec-02-18.data | 4 This unquoted scalar
|
/external/regex-re2/re2/testing/ |
D | re2_test.cc | 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() 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/bison/m4/ |
D | warnings.m4 | 23 # FIXME: gl_Warn must be used unquoted until we can assume Autoconf
|
D | warn-on-use.m4 | 30 dnl FIXME: gl_Symbol must be used unquoted until we can assume
|
D | include_next.m4 | 178 dnl FIXME: gl_next_header and gl_header_exists must be used unquoted
|
/external/chromium-trace/trace-viewer/tracing/third_party/vinn/third_party/parse5/test/data/tokenization/ |
D | test4.test | 11 {"description":"= in unquoted attribute value", 300 {"description":"Grave accent in unquoted attribute", 336 {"description":"EOF in attribute value (unquoted) state",
|
D | test1.test | 192 {"description":"Open angled bracket in unquoted attribute value state",
|
/external/strace/m4/ |
D | warnings.m4 | 23 # FIXME: gl_Warn must be used unquoted until we can assume Autoconf
|
/external/markdown/docs/ |
D | CHANGE_LOG | 105 May 18, 2006: Stopped catching unquoted titles in reference links.
|
/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/bison/data/m4sugar/ |
D | foreach.m4 | 226 # Return ARGS as an unquoted list of double-quoted arguments.
|
D | m4sugar.m4 | 862 # Return ARGS as an unquoted list of double-quoted arguments. 874 # unquoted commas are consumed. 897 # as unbalanced unquoted `)'. m4_expand can handle unterminated 904 # Exploit that extra unquoted () will group unquoted commas and the 908 # the unquoted () that were added prior to the changequote. 965 # Return ARGS as a single argument. Any whitespace after unquoted commas
|
/external/chromium-trace/trace-viewer/third_party/WebOb/docs/ |
D | news.txt | 146 non-letter-or-digit unquoted cookie value characters is now 157 have the older style quoting in them will still be unquoted correctly, 540 are serialized (unquoted expires, semicolon separators even between morsels)
|
/external/tagsoup/ |
D | CHANGES | 214 unquoted attribute values)
|
/external/chromium-trace/trace-viewer/third_party/webapp2/ |
D | CHANGES | 238 - Routes now match the Request path unquoted. See App Engine issue #2636
|
/external/mksh/src/ |
D | check.t | 2887 Check that single quotes inside unquoted {} are treated as quotes 2906 Check that single quotes inside unquoted {} are treated as quotes, 2937 Check that single quotes inside nested unquoted {} are 2957 Check that single quotes inside nested unquoted {} are treated 4139 - omit trailing field in a3zna, a7ina (unquoted $@ expansion) 4140 - has extra middle fields in b5ins, b7ina (IFS_NWS unquoted expansion) 4142 - omit leading field in a5ins, a7ina (IFS_NWS unquoted expansion) 4145 - has extra middle fields in b5ins, b7ina (IFS_NWS unquoted expansion) 4147 - a5ins (IFS_NWS unquoted $*)
|
/external/pcre/dist/m4/ |
D | libtool.m4 | 1232 dnl lt_sysroot will always be passed unquoted. We quote it here
|
/external/libcap-ng/libcap-ng-0.7/m4/ |
D | libtool.m4 | 1232 dnl lt_sysroot will always be passed unquoted. We quote it here
|