HomeSort by relevance Sort by last modified time
    Searched refs:num_matches (Results 1 - 11 of 11) sorted by null

  /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 175 size_t num_matches; local
176 for (num_matches = 0u; (num_matches < max_num_matches) &&
177 (comparing_object.GetDemotedRelevance(*match_at(num_matches)) > 0);
178 ++num_matches) {}
179 matches_.resize(num_matches);
search_provider.cc 650 int num_matches = kMaxMatches * 5; local
654 num_matches, &default_history_results_);
659 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/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/mesa/src/src/gallium/drivers/r300/compiler/tests/
rc_test_helpers.c 39 int num_matches)
53 err_code = regexec(&regex, 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(&regex, search_str, num_matches, matches, 0);
55 for (i = 0; i < num_matches; i++) {
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
dtlstransportchannel_unittest.cc 254 int num_matches = 0; local
257 ++num_matches;
260 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...]

Completed in 158 milliseconds