/external/compiler-rt/lib/lsan/ |
lsan_common_linux.cc | 39 uptr num_matches = GetListOfModules( local 41 if (num_matches == 1) { 45 if (num_matches == 0) 48 else if (num_matches > 1)
|
/external/chromium_org/chrome/browser/autocomplete/ |
autocomplete_result.cc | 188 size_t num_matches; local 189 for (num_matches = 0u; (num_matches < max_num_matches) && 190 (comparing_object.GetDemotedRelevance(*match_at(num_matches)) > 0); 191 ++num_matches) {} 192 matches_.resize(num_matches);
|
search_provider.cc | 836 int num_matches = kMaxMatches * 5; local 841 num_matches, &default_history_results_); 849 keyword_input_.text(), num_matches, &keyword_history_results_); [all...] |
/external/chromium/chrome/browser/history/ |
history_types.cc | 164 size_t* num_matches) const { 167 if (num_matches) 168 *num_matches = 0; 175 if (num_matches) 176 *num_matches = found->second->size();
|
history_types.h | 416 // for entries with the given URL. The array will be |*num_matches| long. 417 // |num_matches| can be NULL if the caller is not interested in the number of 421 // When there is no match, it will return NULL and |*num_matches| will be 0. 422 const size_t* MatchesForURL(const GURL& url, size_t* num_matches) const;
|
/external/chromium_org/third_party/mesa/src/src/gallium/drivers/r300/compiler/tests/ |
rc_test_helpers.c | 39 int num_matches) 53 err_code = regexec(®ex, search_str, num_matches, matches, 0); 55 for (i = 0; i < num_matches; i++) {
|
/external/mesa3d/src/gallium/drivers/r300/compiler/tests/ |
rc_test_helpers.c | 39 int num_matches) 53 err_code = regexec(®ex, search_str, num_matches, matches, 0); 55 for (i = 0; i < num_matches; i++) {
|
/external/chromium_org/chrome/browser/history/ |
history_types.cc | 137 size_t* num_matches) const { 140 if (num_matches) 141 *num_matches = 0; 148 if (num_matches) 149 *num_matches = found->second->size();
|
history_types.h | 379 // for entries with the given URL. The array will be |*num_matches| long. 380 // |num_matches| can be NULL if the caller is not interested in the number of 384 // When there is no match, it will return NULL and |*num_matches| will be 0. 385 const size_t* MatchesForURL(const GURL& url, size_t* num_matches) const;
|
/external/chromium_org/third_party/libjingle/source/talk/p2p/base/ |
dtlstransportchannel_unittest.cc | 288 int num_matches = 0; local 291 ++num_matches; 294 return (num_matches < ((static_cast<int>(size) - 5) / 10));
|
/external/chromium/chrome/browser/autocomplete/ |
autocomplete.cc | 653 const size_t num_matches = std::min(kMaxMatches, matches_.size()); local 654 std::partial_sort(matches_.begin(), matches_.begin() + num_matches, 656 matches_.resize(num_matches); [all...] |