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

  /external/webkit/Tools/Scripts/webkitpy/layout_tests/layout_package/
test_expectations.py 377 num_matches = 0
381 self._add_test(test, modifiers, num_matches, expectations,
505 num_matches = self._check_options(matcher, options, lineno,
507 if num_matches == ModifierMatcher.NO_MATCH:
526 modifiers, num_matches, options, overrides_allowed)
546 return match_result.num_matches
626 modifiers, num_matches, options, overrides_allowed):
629 num_matches, lineno, overrides_allowed):
634 num_matches, lineno)
635 self._add_test(test, modifiers, num_matches, expectations, options
    [all...]
test_expectations_unittest.py 411 self.assertEqual(match_result.num_matches, expected_num_matches,
414 match_result.num_matches, expected_num_matches))
  /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/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 974 milliseconds