Home | History | Annotate | Download | only in src

Lines Matching refs:comments_statistics

2329   CommentStatistic* comments_statistics =
2335 const CommentStatistic& cs = comments_statistics[i];
2347 CommentStatistic* comments_statistics =
2351 comments_statistics[i].Clear();
2353 comments_statistics[CommentStatistic::kMaxComments].comment = "Unknown";
2354 comments_statistics[CommentStatistic::kMaxComments].size = 0;
2355 comments_statistics[CommentStatistic::kMaxComments].count = 0;
2362 CommentStatistic* comments_statistics =
2366 CommentStatistic* cs = &comments_statistics[CommentStatistic::kMaxComments];
2367 // Search for a free or matching entry in 'comments_statistics': 'cs'
2370 if (comments_statistics[i].comment == NULL) {
2371 cs = &comments_statistics[i];
2374 } else if (strcmp(comments_statistics[i].comment, comment) == 0) {
2375 cs = &comments_statistics[i];