Home | History | Annotate | Download | only in history

Lines Matching defs:match_count

19     size_t match_count;
20 const size_t* matches = result.MatchesForURL(result[i].url(), &match_count);
23 for (size_t match = 0; match < match_count; match++) {
63 size_t match_count;
64 const size_t* matches = results.MatchesForURL(url1, &match_count);
65 ASSERT_EQ(2U, match_count);
70 matches = results.MatchesForURL(url2, &match_count);
71 ASSERT_EQ(1U, match_count);
79 matches = results.MatchesForURL(url1, &match_count);
80 ASSERT_EQ(1U, match_count);
82 matches = results.MatchesForURL(url2, &match_count);
83 ASSERT_EQ(1U, match_count);
106 size_t match_count;
108 const size_t* matches = results.MatchesForURL(url2, &match_count);
109 ASSERT_EQ(1U, match_count);