Lines Matching refs:comments_statistics
2682 CommentStatistic* comments_statistics =
2688 const CommentStatistic& cs = comments_statistics[i];
2699 CommentStatistic* comments_statistics =
2703 comments_statistics[i].Clear();
2705 comments_statistics[CommentStatistic::kMaxComments].comment = "Unknown";
2706 comments_statistics[CommentStatistic::kMaxComments].size = 0;
2707 comments_statistics[CommentStatistic::kMaxComments].count = 0;
2714 CommentStatistic* comments_statistics =
2718 CommentStatistic* cs = &comments_statistics[CommentStatistic::kMaxComments];
2719 // Search for a free or matching entry in 'comments_statistics': 'cs'
2722 if (comments_statistics[i].comment == NULL) {
2723 cs = &comments_statistics[i];
2726 } else if (strcmp(comments_statistics[i].comment, comment) == 0) {
2727 cs = &comments_statistics[i];