HomeSort by relevance Sort by last modified time
    Searched defs:match (Results 101 - 125 of 1068) sorted by null

1 2 3 45 6 7 8 91011>>

  /external/apache-http/src/org/apache/http/impl/cookie/
BasicDomainHandler.java 69 // have DNS names. Since they have no dots, to domain-match the
81 // domain must match host
101 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BasicDomainHandler
BasicPathHandler.java 58 if (!match(cookie, origin)) {
65 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BasicPathHandler
80 boolean match = targetpath.startsWith (topmostPath);
81 // if there is a match and these values are not exactly the same we have
83 if (match && targetpath.length() != topmostPath.length()) {
85 match = (targetpath.charAt(topmostPath.length()) == '/');
88 return match;
NetscapeDomainHandler.java 91 public boolean match(Cookie cookie, CookieOrigin origin) { method in class:NetscapeDomainHandler
RFC2109DomainHandler.java 79 + "\" does not match the host \""
111 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2109DomainHandler
RFC2965CommentUrlAttributeHandler.java 62 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965CommentUrlAttributeHandler
RFC2965DiscardAttributeHandler.java 62 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965DiscardAttributeHandler
RFC2965DomainAttributeHandler.java 85 * Performs domain-match as defined by the RFC2965.
100 boolean match = host.equals(domain)
103 return match;
143 // The effective host name must domain-match domain attribute.
148 + "domain-match domain attribute.");
161 // string match request host (case-insensitive).
172 * Match cookie domain attribute.
174 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965DomainAttributeHandler
184 // The effective host name MUST domain-match the Domain
RFC2965VersionAttributeHandler.java 92 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965VersionAttributeHandler
  /external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cms/
SignerId.java 50 * @param subjectKeyId the subject key identifier to use to match the signers associated certificate.
90 public boolean match(Object obj) method in class:SignerId
97 return baseSelector.match(obj);
  /external/chromium/chrome/browser/autocomplete/
autocomplete_browsertest.cc 39 AutocompleteMatch match = result.match_at(i); local
40 std::string provider_name = match.provider->name();
42 UTF16ToUTF8(match.contents).c_str(),
120 // about the other match existing.
122 AutocompleteMatch match = result.match_at(0); local
123 EXPECT_EQ(AutocompleteMatch::SEARCH_WHAT_YOU_TYPED, match.type);
124 EXPECT_FALSE(match.deletable);
  /external/chromium/chrome/browser/autofill/
name_field.cc 35 if (Match(field, l10n_util::GetStringUTF16(IDS_AUTOFILL_USERNAME_RE), false))
90 // so we match "initials" here (and just fill in a first name there,
93 string16 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_FIRST_NAME_RE); local
94 if (!ParseText(&q, match, &v->first_name_))
102 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_MIDDLE_INITIAL_RE);
103 if (ParseText(&q, match, &v->middle_name_)) {
106 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_MIDDLE_NAME_RE);
107 ParseText(&q, match, &v->middle_name_);
111 match = l10n_util::GetStringUTF16(IDS_AUTOFILL_LAST_NAME_RE);
112 if (!ParseText(&q, match, &v->last_name_)
    [all...]
  /external/chromium/chrome/browser/content_settings/
content_settings_pattern.cc 77 const size_t match = local
80 return (match != std::string::npos) &&
81 (match == 0 || host[match - 1] == '.') &&
82 (match + pattern_.length() - kDomainWildcardLength == host.length());
  /external/chromium_org/chrome/browser/extensions/api/omnibox/
omnibox_api_browsertest.cc 46 AutocompleteMatch match = result.match_at(0); local
47 EXPECT_EQ(AutocompleteMatchType::SEARCH_WHAT_YOU_TYPED, match.type);
48 EXPECT_FALSE(match.deletable);
50 match = result.match_at(1);
51 EXPECT_EQ(ASCIIToUTF16("keyword"), match.keyword);
95 ASCIIToUTF16("Description with style: <match>, [dim], (url till end)");
106 EXPECT_EQ(ACMatchClassification::MATCH,
129 AutocompleteMatch match = result.match_at(4); local
130 EXPECT_EQ(AutocompleteMatchType::SEARCH_WHAT_YOU_TYPED, match.type);
133 EXPECT_FALSE(match.deletable)
    [all...]
  /external/chromium_org/chrome/browser/ui/app_list/search/
tokenized_string_match_unittest.cc 15 // Returns a string of |text| marked the hits in |match| using block bracket.
18 const TokenizedStringMatch& match) {
21 const TokenizedStringMatch::Hits& hits = match.hits();
45 TokenizedStringMatch match; local
48 EXPECT_FALSE(match.Calculate(UTF8ToUTF16(kTestCases[i].query), text))
55 TEST(TokenizedStringMatchTest, Match) {
71 TokenizedStringMatch match; local
74 EXPECT_TRUE(match.Calculate(UTF8ToUTF16(kTestCases[i].query), text));
75 EXPECT_EQ(kTestCases[i].expect, MatchHit(text, match));
91 // Acronym match is better than something in the middle
    [all...]
  /external/chromium_org/components/autofill/core/browser/
autofill_regexes.cc 79 UBool match = matcher->find(0, status); local
81 return !!match;
  /external/chromium_org/content/renderer/android/
phone_number_detector.cc 68 PhoneNumberMatch match; local
69 matcher.Next(&match);
72 phone_util->FormatNumberForMobileDialing(match.number(), region_code_,
81 *start_pos = UTF8ToUTF16(utf8_input.substr(0, match.start())).length();
82 *end_pos = *start_pos + UTF8ToUTF16(match.raw_string()).length();
  /external/chromium_org/extensions/browser/
info_map_unittest.cc 145 const Extension* match = info_map->extensions().GetExtensionOrAppByURL( local
147 EXPECT_TRUE(match && match->HasAPIPermission(APIPermission::kNotification));
148 match = info_map->extensions().GetExtensionOrAppByURL(app_url);
149 EXPECT_TRUE(match && match->HasAPIPermission(APIPermission::kNotification));
150 EXPECT_FALSE(match && match->HasAPIPermission(APIPermission::kTab));
153 match = info_map->extensions().GetExtensionOrAppByURL(
155 EXPECT_TRUE(match && match->HasAPIPermission(APIPermission::kTab))
    [all...]
  /external/chromium_org/third_party/WebKit/Source/bindings/v8/
ScriptRegexp.cpp 59 int ScriptRegexp::match(const String& string, int startFrom, int* matchLength) const function in class:WebCore::ScriptRegexp
85 // RegExp#exec returns null if there's no match, otherwise it returns an
86 // Array of strings with the first being the whole match string and others
88 // "index" which is the offset of the match.
99 v8::Local<v8::String> match = result->Get(0).As<v8::String>(); local
100 *matchLength = match->Length();
  /external/chromium_org/third_party/icu/source/i18n/
csrutf8.cpp 26 int32_t CharsetRecog_UTF8::match(InputText* det) { function in class:CharsetRecog_UTF8
  /external/chromium_org/third_party/mesa/src/src/glx/
clientinfo.c 88 char *match = strstr(haystack, "GLX_ARB_create_context"); local
90 if (match == NULL)
93 match += ext_length;
95 switch (match[0]) {
102 if (strncmp(match, "_profile", prof_length) == 0
103 && (match[prof_length] == '\0'
104 || match[prof_length] == ' ')) {
106 match += prof_length;
111 haystack = match;
  /external/chromium_org/third_party/smhasher/src/
Types.cpp 110 uint8_t match[256]; local
112 memset(match,0,256);
118 if(match[c]) { b = 0; matchfail++; break; }
120 match[c] = 1;
  /external/chromium_org/tools/gyp/test/mac/
gyptest-postbuild-fail.py 16 # set |match| to ignore build stderr output.
18 match = lambda a, b: True) variable
  /external/elfutils/libdw/
libdw_visit_scopes.c 56 enum die_class { ignore, match, match_inline, walk, imported }; enumerator in enum:die_class
63 /* DIEs with addresses we can try to match. */
71 return match;
79 ? match_inline : match);
132 case match:
  /external/elfutils/tests/
find-prologues.c 58 bool match; local
60 match = fnmatch (*argv, name, 0) == 0;
61 while (!match && *++argv);
62 if (!match)
funcretval.c 58 bool match; local
60 match = fnmatch (*argv, name, 0) == 0;
61 while (!match && *++argv);
62 if (!match)

Completed in 732 milliseconds

1 2 3 45 6 7 8 91011>>