Home
last modified time | relevance | path

Searched refs:num_matches (Results 1 – 11 of 11) sorted by relevance

/external/compiler-rt/lib/lsan/
Dlsan_common_linux.cc39 uptr num_matches = GetListOfModules( in InitializePlatformSpecificModules() local
41 if (num_matches == 1) { in InitializePlatformSpecificModules()
45 if (num_matches == 0) in InitializePlatformSpecificModules()
48 else if (num_matches > 1) in InitializePlatformSpecificModules()
/external/chromium_org/chrome/browser/autocomplete/
Dautocomplete_result.cc188 size_t num_matches; in SortAndCull() local
189 for (num_matches = 0u; (num_matches < max_num_matches) && in SortAndCull()
190 (comparing_object.GetDemotedRelevance(*match_at(num_matches)) > 0); in SortAndCull()
191 ++num_matches) {} in SortAndCull()
192 matches_.resize(num_matches); in SortAndCull()
Dsearch_provider.cc836 int num_matches = kMaxMatches * 5; in DoHistoryQuery() local
841 num_matches, &default_history_results_); in DoHistoryQuery()
849 keyword_input_.text(), num_matches, &keyword_history_results_); in DoHistoryQuery()
/external/chromium_org/chrome/browser/history/
Dhistory_types.cc137 size_t* num_matches) const { in MatchesForURL()
140 if (num_matches) in MatchesForURL()
141 *num_matches = 0; in MatchesForURL()
148 if (num_matches) in MatchesForURL()
149 *num_matches = found->second->size(); in MatchesForURL()
Dhistory_types.h385 const size_t* MatchesForURL(const GURL& url, size_t* num_matches) const;
/external/chromium/chrome/browser/history/
Dhistory_types.cc164 size_t* num_matches) const { in MatchesForURL()
167 if (num_matches) in MatchesForURL()
168 *num_matches = 0; in MatchesForURL()
175 if (num_matches) in MatchesForURL()
176 *num_matches = found->second->size(); in MatchesForURL()
Dhistory_types.h422 const size_t* MatchesForURL(const GURL& url, size_t* num_matches) const;
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c39 int num_matches) in regex_helper() argument
53 err_code = regexec(&regex, search_str, num_matches, matches, 0); in regex_helper()
55 for (i = 0; i < num_matches; i++) { in regex_helper()
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/
Drc_test_helpers.c39 int num_matches) in regex_helper() argument
53 err_code = regexec(&regex, search_str, num_matches, matches, 0); in regex_helper()
55 for (i = 0; i < num_matches; i++) { in regex_helper()
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/
Ddtlstransportchannel_unittest.cc288 int num_matches = 0; in VerifyEncryptedPacket() local
291 ++num_matches; in VerifyEncryptedPacket()
294 return (num_matches < ((static_cast<int>(size) - 5) / 10)); in VerifyEncryptedPacket()
/external/chromium/chrome/browser/autocomplete/
Dautocomplete.cc653 const size_t num_matches = std::min(kMaxMatches, matches_.size()); in SortAndCull() local
654 std::partial_sort(matches_.begin(), matches_.begin() + num_matches, in SortAndCull()
656 matches_.resize(num_matches); in SortAndCull()