Searched defs:match (Results 26 - 50 of 673) sorted by relevance

1234567891011>>

/external/apache-http/src/org/apache/http/cookie/
H A DCookieAttributeHandler.java77 * @param cookie {@link org.apache.http.cookie.Cookie} to match
78 * @param origin the cookie source to match against
79 * @return <tt>true</tt> if the match is successful; <tt>false</tt> otherwise
81 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieAttributeHandler
H A DCookieSpec.java102 boolean match(Cookie cookie, CookieOrigin origin); method in interface:CookieSpec
/external/apache-http/src/org/apache/http/impl/cookie/
H A DBasicDomainHandler.java75 // have DNS names. Since they have no dots, to domain-match the
87 // domain must match host
107 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BasicDomainHandler
H A DBasicPathHandler.java64 if (!match(cookie, origin)) {
71 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BasicPathHandler
86 boolean match = targetpath.startsWith (topmostPath);
87 // if there is a match and these values are not exactly the same we have
89 if (match && targetpath.length() != topmostPath.length()) {
91 match = (targetpath.charAt(topmostPath.length()) == '/');
94 return match;
H A DBasicSecureHandler.java59 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BasicSecureHandler
H A DCookieSpecBase.java121 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:CookieSpecBase
129 if (!handler.match(cookie, origin)) {
H A DNetscapeDomainHandler.java97 public boolean match(Cookie cookie, CookieOrigin origin) { method in class:NetscapeDomainHandler
H A DRFC2109DomainHandler.java85 + "\" does not match the host \""
117 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2109DomainHandler
H A DRFC2965CommentUrlAttributeHandler.java67 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965CommentUrlAttributeHandler
H A DRFC2965DiscardAttributeHandler.java67 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965DiscardAttributeHandler
H A DRFC2965DomainAttributeHandler.java90 * Performs domain-match as defined by the RFC2965.
105 boolean match = host.equals(domain)
108 return match;
148 // The effective host name must domain-match domain attribute.
153 + "domain-match domain attribute.");
166 // string match request host (case-insensitive).
179 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965DomainAttributeHandler
189 // The effective host name MUST domain-match the Domain
H A DRFC2965PortAttributeHandler.java152 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965PortAttributeHandler
H A DRFC2965VersionAttributeHandler.java97 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:RFC2965VersionAttributeHandler
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/
H A DAttributeCertificateIssuer.java112 public boolean match(Object obj) method in class:AttributeCertificateIssuer
/external/chromium_org/chrome/browser/autocomplete/
H A Dautocomplete_classifier.cc44 AutocompleteMatch* match,
61 *match = *result.default_match();
39 Classify( const base::string16& text, bool prefer_keyword, bool allow_exact_keyword_match, metrics::OmniboxEventProto::PageClassification page_classification, AutocompleteMatch* match, GURL* alternate_nav_url) argument
/external/chromium_org/chrome/browser/extensions/api/omnibox/
H A Domnibox_api_browsertest.cc55 AutocompleteMatch match = result.match_at(0); local
56 EXPECT_EQ(AutocompleteMatchType::SEARCH_WHAT_YOU_TYPED, match.type);
57 EXPECT_FALSE(match.deletable);
59 match = result.match_at(1);
60 EXPECT_EQ(ASCIIToUTF16("keyword"), match.keyword);
103 ASCIIToUTF16("Description with style: <match>, [dim], (url till end)");
137 AutocompleteMatch match = result.match_at(4); local
138 EXPECT_EQ(AutocompleteMatchType::SEARCH_WHAT_YOU_TYPED, match.type);
141 EXPECT_FALSE(match.deletable);
H A Domnibox_api_testbase.h50 AutocompleteMatch match = result.match_at(i); local
51 std::string provider_name = match.provider->GetName();
54 base::UTF16ToUTF8(match.contents).c_str(),
/external/chromium_org/chrome/browser/extensions/
H A Dchrome_info_map_unittest.cc78 const Extension* match = info_map->extensions().GetExtensionOrAppByURL( local
80 EXPECT_TRUE(match &&
81 match->permissions_data()->HasAPIPermission(
83 match = info_map->extensions().GetExtensionOrAppByURL(app_url);
84 EXPECT_TRUE(match &&
85 match->permissions_data()->HasAPIPermission(
88 match &&
89 match->permissions_data()->HasAPIPermission(APIPermission::kTab));
92 match = info_map->extensions().GetExtensionOrAppByURL(
94 EXPECT_TRUE(match
[all...]
/external/chromium_org/components/autofill/core/browser/
H A Dautofill_regexes.cc79 UBool match = matcher->find(0, status); local
81 return !!match;
/external/chromium_org/third_party/icu/source/i18n/
H A Dcsrutf8.cpp27 UBool CharsetRecog_UTF8::match(InputText* input, CharsetMatch *results) const { function in class:CharsetRecog_UTF8
/external/chromium_org/third_party/libphonenumber/src/phonenumbers/
H A Dphonenumbermatch.cc17 // Implementation of a mutable match of a phone number within a piece of
78 bool PhoneNumberMatch::Equals(const PhoneNumberMatch& match) const {
79 return ExactlySameAs(match.number_, number_) &&
80 match.raw_string_.compare(raw_string_) == 0 &&
81 match.start_ == start_;
84 void PhoneNumberMatch::CopyFrom(const PhoneNumberMatch& match) { argument
85 raw_string_ = match.raw_string();
86 start_ = match.start();
87 number_ = match.number();
/external/chromium_org/third_party/mesa/src/src/glx/
H A Dclientinfo.c88 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/skia/tests/
H A DReadWriteAlphaTest.cpp70 // make sure the original & read back versions match
71 bool match = true; local
76 match = false;
81 REPORTER_ASSERT(reporter, match);
99 match = true;
104 match = false;
109 REPORTER_ASSERT(reporter, match);
/external/chromium_org/tools/gyp/test/mac/
H A Dgyptest-postbuild-fail.py16 # set |match| to ignore build stderr output.
18 match = lambda a, b: True) variable
/external/chromium_org/ui/app_list/search/
H A Dtokenized_string_match_unittest.cc16 // Returns a string of |text| marked the hits in |match| using block bracket.
19 const TokenizedStringMatch& match) {
22 const TokenizedStringMatch::Hits& hits = match.hits();
46 TokenizedStringMatch match; local
49 EXPECT_FALSE(match.Calculate(base::UTF8ToUTF16(kTestCases[i].query), text))
75 TokenizedStringMatch match; local
78 EXPECT_TRUE(match.Calculate(base::UTF8ToUTF16(kTestCases[i].query), text));
79 EXPECT_EQ(kTestCases[i].expect, MatchHit(text, match));
95 // Acronym match is better than something in the middle.
97 // Prefix match i
18 MatchHit(const base::string16& text, const TokenizedStringMatch& match) argument
[all...]

Completed in 3961 milliseconds

1234567891011>>