HomeSort by relevance Sort by last modified time
    Searched refs:unquoted (Results 1 - 19 of 19) sorted by null

  /external/chromium_org/net/http/
http_security_headers.cc 121 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/
create_nmf.py 445 unquoted = quote.unquote(kv, ':')
446 if len(unquoted) == 3:
447 if unquoted[1] != ':':
452 canonicalized.append([unquoted[0], 'portable', unquoted[2]])
453 elif len(unquoted) == 5:
454 if unquoted[1] != ':' or unquoted[3] != ':':
460 canonicalized.append([unquoted[0], unquoted[2], unquoted[4]]
    [all...]
  /external/chromium_org/third_party/re2/re2/
re2.cc 443 string RE2::QuoteMeta(const StringPiece& unquoted) {
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[ii] != '_' &
    [all...]
re2.h 403 // 'unquoted'. The returned string, used as a regular expression,
408 static string QuoteMeta(const StringPiece& unquoted);
    [all...]
  /external/chromium_org/third_party/re2/util/
pcre.cc 417 string PCRE::QuoteMeta(const StringPiece& unquoted) {
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[ii] != '_' &
    [all...]
pcre.h 439 // Returns a copy of 'unquoted' with all potentially meaningful
446 static string QuoteMeta(const StringPiece& unquoted);
  /external/regex-re2/re2/
re2.cc 425 string RE2::QuoteMeta(const StringPiece& unquoted) {
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[ii] != '_' &
    [all...]
re2.h 403 // 'unquoted'. The returned string, used as a regular expression,
408 static string QuoteMeta(const StringPiece& unquoted);
    [all...]
  /external/regex-re2/util/
pcre.cc 412 string PCRE::QuoteMeta(const StringPiece& unquoted) {
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[ii] != '_' &
    [all...]
pcre.h 433 // Returns a copy of 'unquoted' with all potentially meaningful
440 static string QuoteMeta(const StringPiece& unquoted);
  /packages/apps/Settings/src/com/android/settings/net/
NetworkPolicyEditor.java 238 // Remove legacy unquoted policies while we're here
239 final NetworkTemplate unquoted = buildUnquotedNetworkTemplate(template); local
240 final NetworkPolicy unquotedPolicy = getPolicy(unquoted);
353 * with an unquoted {@link NetworkTemplate#getNetworkId()}. Used to work
  /external/chromium_org/third_party/re2/re2/testing/
re2_test.cc 390 // the original unquoted string.
391 static void TestQuoteMeta(string unquoted,
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,
403 string quoted = RE2::QuoteMeta(unquoted);
406 "Unquoted='" + unquoted + "', quoted='" + quoted + "'.")
    [all...]
  /external/regex-re2/re2/testing/
re2_test.cc 383 // the original unquoted string.
384 static void TestQuoteMeta(string unquoted,
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,
396 string quoted = RE2::QuoteMeta(unquoted);
399 "Unquoted='" + unquoted + "', quoted='" + quoted + "'.")
    [all...]
  /external/chromium_org/v8/test/mjsunit/
object-literal.js 169 // Quoted keyword works is read back by unquoted as well.
  /prebuilts/python/darwin-x86/2.7.5/lib/python2.7/
urllib2.py 869 warnings.warn("Basic Auth Realm was unquoted",
    [all...]
  /prebuilts/python/linux-x86/2.7.5/lib/python2.7/
urllib2.py 869 warnings.warn("Basic Auth Realm was unquoted",
    [all...]
  /build/tools/droiddoc/templates-sac/assets/js/
android_3p-bundle.js     [all...]
  /build/tools/droiddoc/templates-sdk/assets/js/
android_3p-bundle.js     [all...]
  /build/tools/droiddoc/templates-sdk-dyn/assets/js/
android_3p-bundle.js     [all...]

Completed in 2738 milliseconds