Searched refs:unquoted (Results 1 - 13 of 13) 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/native_client_sdk/src/tools/
H A Dcreate_nmf.py544 unquoted = quote.unquote(kv, ':')
545 if len(unquoted) == 3:
546 if unquoted[1] != ':':
551 canonicalized.append([unquoted[0], 'portable', unquoted[2]])
552 elif len(unquoted) == 5:
553 if unquoted[1] != ':' or unquoted[3] != ':':
559 canonicalized.append([unquoted[0], unquoted[
[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...]
H A Dre2.h403 // 'unquoted'. The returned string, used as a regular expression,
408 static string QuoteMeta(const StringPiece& unquoted);
/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...]
H A Dpcre.h439 // Returns a copy of 'unquoted' with all potentially meaningful
446 static string QuoteMeta(const StringPiece& unquoted);
/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...]
H A Dre2.h403 // 'unquoted'. The returned string, used as a regular expression,
408 static string QuoteMeta(const StringPiece& 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...]
H A Dpcre.h433 // Returns a copy of 'unquoted' with all potentially meaningful
440 static string QuoteMeta(const StringPiece& unquoted);
/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/libvpx/libvpx/examples/includes/geshi/
H A Dgeshi.php4426 * @param $list array of (unquoted) strings

Completed in 187 milliseconds