Searched refs:num_matches (Results 1 – 11 of 11) sorted by relevance
/external/compiler-rt/lib/lsan/ |
D | lsan_common_linux.cc | 39 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/ |
D | autocomplete_result.cc | 188 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()
|
D | search_provider.cc | 836 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/ |
D | history_types.cc | 137 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()
|
D | history_types.h | 385 const size_t* MatchesForURL(const GURL& url, size_t* num_matches) const;
|
/external/chromium/chrome/browser/history/ |
D | history_types.cc | 164 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()
|
D | history_types.h | 422 const size_t* MatchesForURL(const GURL& url, size_t* num_matches) const;
|
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
D | rc_test_helpers.c | 39 int num_matches) in regex_helper() argument 53 err_code = regexec(®ex, 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/ |
D | rc_test_helpers.c | 39 int num_matches) in regex_helper() argument 53 err_code = regexec(®ex, 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/ |
D | dtlstransportchannel_unittest.cc | 288 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/ |
D | autocomplete.cc | 653 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()
|