/external/apache-http/src/org/apache/http/impl/cookie/ |
BestMatchSpec.java | 147 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:BestMatchSpec 155 return getStrict().match(cookie, origin); 157 return getCompat().match(cookie, origin);
|
CookieSpecBase.java | 116 public boolean match(final Cookie cookie, final CookieOrigin origin) { method in class:CookieSpecBase 124 if (!handler.match(cookie, origin)) {
|
/external/bouncycastle/bcpkix/src/main/java/org/bouncycastle/cert/selector/ |
X509CertificateHolderSelector.java | 52 * @param subjectKeyId the subject key identifier to use to match the signers associated certificate. 113 public boolean match(Object obj) method in class:X509CertificateHolderSelector
|
/external/bouncycastle/bcprov/src/main/java/org/bouncycastle/x509/ |
AttributeCertificateIssuer.java | 141 public boolean match(Certificate cert) method in class:AttributeCertificateIssuer 199 public boolean match(Object obj) method in class:AttributeCertificateIssuer 206 return match((Certificate)obj);
|
/external/chromium/chrome/browser/autocomplete/ |
autocomplete_popup_model.cc | 73 const AutocompleteMatch& match = result.match_at(line); local 78 manually_selected_match_.destination_url = match.destination_url; 79 manually_selected_match_.provider_affinity = match.provider; 81 match.is_history_what_you_typed_match; 100 // Update the edit with the new data for this match. 104 const bool is_keyword_hint = GetKeywordForMatch(match, &keyword); 107 if ((match.inline_autocomplete_offset != string16::npos) && 108 (match.inline_autocomplete_offset < match.fill_into_edit.length())) { 110 match.fill_into_edit.substr(match.inline_autocomplete_offset) 203 const AutocompleteMatch& match = result().match_at(selected_line_); local [all...] |
autocomplete_result_unittest.cc | 28 // Configures |match| from |data|. 30 AutocompleteMatch* match); 55 AutocompleteMatch* match) { 56 match->provider = reinterpret_cast<AutocompleteProvider*>(data.provider_id); 57 match->fill_into_edit = base::IntToString16(data.url_id); 59 match->destination_url = GURL("http://" + url_id); 60 match->relevance = data.relevance; 69 AutocompleteMatch match; local 70 PopulateAutocompleteMatch(data[i], &match); 71 matches->push_back(match); 83 const AutocompleteMatch& match = *(result.begin() + i); local 126 AutocompleteMatch match; local [all...] |
/external/chromium/third_party/libjingle/source/talk/xmllite/ |
xmlnsstack.cc | 91 const std::string * match = NsForPrefix(prefix); local 92 if (match == NULL) 94 return (*match == ns);
|
/external/chromium_org/chrome/browser/autocomplete/ |
autocomplete_browsertest.cc | 42 AutocompleteMatch match = result.match_at(i); local 44 UTF16ToUTF8(match.contents).c_str(), 45 match.provider->GetName())); 151 // about the other match existing. 153 AutocompleteMatch match = result.match_at(0); local 154 EXPECT_EQ(AutocompleteMatchType::SEARCH_WHAT_YOU_TYPED, match.type); 155 EXPECT_FALSE(match.deletable);
|
/external/chromium_org/chrome/browser/history/ |
shortcuts_backend_unittest.cc | 35 AutocompleteMatch match; local 36 match.destination_url = GURL(url); 37 match.contents = ASCIIToUTF16("test"); 38 return ShortcutsBackend::Shortcut::MatchCore(match); 110 // Verifies that particular original match types are automatically modified when
|
/external/chromium_org/chrome/browser/ui/omnibox/ |
omnibox_popup_model.cc | 75 const AutocompleteMatch& match = result.match_at(line); local 80 manually_selected_match_.destination_url = match.destination_url; 81 manually_selected_match_.provider_affinity = match.provider; 83 match.is_history_what_you_typed_match; 106 // Update the edit with the new data for this match. 111 match.GetKeywordUIState(edit_model_->profile(), &keyword, &is_keyword_hint); 114 edit_model_->OnPopupDataChanged(match.inline_autocompletion, NULL, 117 edit_model_->OnPopupDataChanged(match.fill_into_edit, ¤t_destination, 152 const AutocompleteMatch& match = result().match_at(selected_line_); local 153 DCHECK(match.associated_keyword.get()) 169 const AutocompleteMatch& match = result().match_at(selected_line_); local [all...] |
/external/chromium_org/chrome/browser/ui/views/frame/ |
browser_root_view.cc | 195 AutocompleteMatch match; local 197 browser_view_->browser()->profile())->Classify(text, false, false, &match, 199 if (!match.destination_url.is_valid()) 203 *url = match.destination_url;
|
/external/chromium_org/courgette/ |
disassembler_elf_32_x86.cc | 76 // so we check, and just don't do it if we don't match up. 82 bool match = true; local 95 match = false; 99 while (match && (reloc_iter != abs32_locations_.end())) { 102 match = false; 107 if (match) {
|
/external/chromium_org/third_party/WebKit/Source/platform/exported/linux/ |
WebFontInfo.cpp | 162 FcPattern* match = FcFontMatch(0, pattern, &result); local 167 if (!match) 173 if (FcPatternGetBool(match, FC_ANTIALIAS, 0, &b) == FcResultMatch) 175 if (FcPatternGetBool(match, FC_EMBEDDED_BITMAP, 0, &b) == FcResultMatch) 177 if (FcPatternGetBool(match, FC_AUTOHINT, 0, &b) == FcResultMatch) 179 if (FcPatternGetBool(match, FC_HINTING, 0, &b) == FcResultMatch) 181 if (FcPatternGetInteger(match, FC_HINT_STYLE, 0, &i) == FcResultMatch) 183 if (FcPatternGetInteger(match, FC_RGBA, 0, &i) == FcResultMatch) { 205 FcPatternDestroy(match);
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/ |
sampstat | 74 match = re.search(decimalNumberPattern, line) variable 75 if match: 76 results.append(float(match.group(0)))
|
/external/chromium_org/third_party/WebKit/Tools/Scripts/webkitpy/thirdparty/coverage/ |
files.py | 90 """Add another directory to the list we match for.""" 93 def match(self, fpath): member in class:TreeMatcher 114 def match(self, fpath): member in class:FnmatchMatcher 115 """Does `fpath` match one of our filename patterns?""" 153 string. When mapping paths, if a path starts with a match against 154 `pattern`, then that match is replaced with `result`. This models 159 match an entire tree, and not just its root. 170 # match the whole string, which we don't want. 174 # We want */a/b.py to match on Windows to, so change slash to match [all...] |
/external/chromium_org/third_party/harfbuzz-ng/src/ |
hb-ot-name-table.hh | 91 NameRecord *match = (NameRecord *) bsearch (&key, nameRecord, count, sizeof (nameRecord[0]), (hb_compare_func_t) NameRecord::cmp); local 93 if (!match) 96 unsigned int length = MIN (buffer_length, (unsigned int) match->length); 97 memcpy (buffer, (char *) this + stringOffset + match->offset, length);
|
/external/chromium_org/third_party/icu/source/i18n/ |
csrucode.cpp | 31 int32_t CharsetRecog_UTF_16_BE::match(InputText* textIn) function in class:CharsetRecog_UTF_16_BE 54 int32_t CharsetRecog_UTF_16_LE::match(InputText* textIn) function in class:CharsetRecog_UTF_16_LE 72 int32_t CharsetRecog_UTF_32::match(InputText* textIn) function in class:CharsetRecog_UTF_32
|
/external/chromium_org/third_party/icu/source/test/perf/strsrchperf/ |
strsrchperf.h | 119 int32_t match; local 121 match = usearch_first(srch, status); 122 while (match != USEARCH_DONE) { 123 match = usearch_next(srch, status); 128 int32_t match; local 130 match = usearch_last(srch, status); 131 while (match != USEARCH_DONE) { 132 match = usearch_previous(srch, status);
|
/external/chromium_org/third_party/libjingle/source/talk/xmllite/ |
xmlnsstack.cc | 88 const std::pair<std::string, bool> match = NsForPrefix(prefix); local 89 return match.second && (match.first == ns);
|
/external/chromium_org/third_party/re2/util/ |
benchmark.cc | 135 static int match(const char* name, int argc, const char** argv) { function 147 if(match(b->name, argc, argv))
|
/external/chromium_org/third_party/skia/src/pathops/ |
SkDQuadImplicit.cpp | 92 * OPTIMIZATION -- since comparison short-circuits on no match, 96 bool SkDQuadImplicit::match(const SkDQuadImplicit& p2) const { function in class:SkDQuadImplicit 113 bool SkDQuadImplicit::Match(const SkDQuad& quad1, const SkDQuad& quad2) { 116 return i1.match(i2);
|
/external/chromium_org/tools/gn/ |
builder_unittest.cc | 45 bool match = (files_[0] == f); local 47 return match; 57 bool match = ( local 61 return match;
|
/external/clang/include/clang/ASTMatchers/ |
ASTMatchFinder.h | 11 // over the AST and invokes a given callback on every match. 14 // subtree match on the AST. Next, a callback that is executed every time the 19 // the match or construct changes that can be applied to the code. 56 /// that will trigger the callbacks specified via addMatcher(...) when a match 68 /// \brief Contains all information for a given match. 70 /// Every time a match is found, the MatchFinder will invoke the registered 71 /// MatchCallback with a MatchResult containing information about the match. 75 /// \brief Contains the nodes bound on the current match. 87 /// \brief Called when the Match registered for it was successfully found 93 /// \brief Called on every match by the \c MatchFinder 148 template <typename T> void match(const T &Node, ASTContext &Context) { function in class:clang::ast_matchers::MatchFinder 226 match(MatcherT Matcher, const ast_type_traits::DynTypedNode &Node, function in namespace:clang::ast_matchers 237 match(MatcherT Matcher, const NodeT &Node, ASTContext &Context) { function in namespace:clang::ast_matchers [all...] |
/external/harfbuzz_ng/src/ |
hb-ot-name-table.hh | 91 NameRecord *match = (NameRecord *) bsearch (&key, nameRecord, count, sizeof (nameRecord[0]), (hb_compare_func_t) NameRecord::cmp); local 93 if (!match) 96 unsigned int length = MIN (buffer_length, (unsigned int) match->length); 97 memcpy (buffer, (char *) this + stringOffset + match->offset, length);
|
/external/hyphenation/ |
hyphen.h | 79 char *match; member in struct:_HyphenState
|