Searched defs:unquoted (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/net/http/
H A Dhttp_security_headers.cc121 std::string unquoted = HttpUtil::Unquote(value); local
124 if (unquoted.empty())
127 if (!base::Base64Decode(unquoted, &decoded))
191 std::string unquoted; local
224 unquoted = HttpUtil::Unquote(tokenizer.token());
225 if (!MaxAgeToInt(unquoted.begin(), unquoted.end(), &max_age_candidate))
/external/chromium_org/third_party/re2/re2/testing/
H A Dre2_test.cc390 // the original unquoted string.
391 static void TestQuoteMeta(string unquoted, argument
393 string quoted = RE2::QuoteMeta(unquoted);
395 EXPECT_TRUE_M(RE2::FullMatch(unquoted, re),
396 "Unquoted='" + unquoted + "', quoted='" + quoted + "'.");
400 // the original unquoted string.
401 static void NegativeTestQuoteMeta(string unquoted, string should_not_match, argument
403 string quoted = RE2::QuoteMeta(unquoted);
406 "Unquoted='" + unquoted + "', quoted='" + quoted + "'.");
/external/regex-re2/re2/testing/
H A Dre2_test.cc383 // the original unquoted string.
384 static void TestQuoteMeta(string unquoted, argument
386 string quoted = RE2::QuoteMeta(unquoted);
388 EXPECT_TRUE_M(RE2::FullMatch(unquoted, re),
389 "Unquoted='" + unquoted + "', quoted='" + quoted + "'.");
393 // the original unquoted string.
394 static void NegativeTestQuoteMeta(string unquoted, string should_not_match, argument
396 string quoted = RE2::QuoteMeta(unquoted);
399 "Unquoted='" + unquoted + "', quoted='" + quoted + "'.");
/external/chromium_org/third_party/re2/util/
H A Dpcre.cc417 string PCRE::QuoteMeta(const StringPiece& unquoted) { argument
419 result.reserve(unquoted.size() << 1);
428 for (int ii = 0; ii < unquoted.length(); ++ii) {
431 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') &&
432 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') &&
433 (unquoted[ii] < '0' || unquoted[ii] > '9') &&
434 unquoted[i
[all...]
/external/pcre/dist/
H A Dpcrecpp.cc466 /*static*/ string RE::QuoteMeta(const StringPiece& unquoted) { argument
477 for (int ii = 0; ii < unquoted.size(); ++ii) {
480 if (unquoted[ii] == '\0') {
482 } else if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') &&
483 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') &&
484 (unquoted[ii] < '0' || unquoted[ii] > '9') &&
485 unquoted[i
[all...]
H A Dpcrecpp_unittest.cc485 // the original unquoted string.
486 static void TestQuoteMeta(string unquoted, RE_Options options = RE_Options()) { argument
487 string quoted = RE::QuoteMeta(unquoted);
489 CHECK(re.FullMatch(unquoted));
493 // quoted, should not generally match a string the unquoted string does.
494 static void NegativeTestQuoteMeta(string unquoted, string should_not_match, argument
496 string quoted = RE::QuoteMeta(unquoted);
/external/regex-re2/util/
H A Dpcre.cc412 string PCRE::QuoteMeta(const StringPiece& unquoted) { argument
414 result.reserve(unquoted.size() << 1);
423 for (int ii = 0; ii < unquoted.length(); ++ii) {
426 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') &&
427 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') &&
428 (unquoted[ii] < '0' || unquoted[ii] > '9') &&
429 unquoted[i
[all...]
/external/chromium_org/third_party/re2/re2/
H A Dre2.cc443 string RE2::QuoteMeta(const StringPiece& unquoted) { argument
445 result.reserve(unquoted.size() << 1);
454 for (int ii = 0; ii < unquoted.length(); ++ii) {
457 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') &&
458 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') &&
459 (unquoted[ii] < '0' || unquoted[ii] > '9') &&
460 unquoted[i
[all...]
/external/regex-re2/re2/
H A Dre2.cc425 string RE2::QuoteMeta(const StringPiece& unquoted) { argument
427 result.reserve(unquoted.size() << 1);
436 for (int ii = 0; ii < unquoted.length(); ++ii) {
439 if ((unquoted[ii] < 'a' || unquoted[ii] > 'z') &&
440 (unquoted[ii] < 'A' || unquoted[ii] > 'Z') &&
441 (unquoted[ii] < '0' || unquoted[ii] > '9') &&
442 unquoted[i
[all...]

Completed in 248 milliseconds