Home | History | Annotate | Download | only in src

Lines Matching full:comments_statistics

2635   CommentStatistic* comments_statistics =
2641 const CommentStatistic& cs = comments_statistics[i];
2652 CommentStatistic* comments_statistics =
2656 comments_statistics[i].Clear();
2658 comments_statistics[CommentStatistic::kMaxComments].comment = "Unknown";
2659 comments_statistics[CommentStatistic::kMaxComments].size = 0;
2660 comments_statistics[CommentStatistic::kMaxComments].count = 0;
2667 CommentStatistic* comments_statistics =
2671 CommentStatistic* cs = &comments_statistics[CommentStatistic::kMaxComments];
2672 // Search for a free or matching entry in 'comments_statistics': 'cs'
2675 if (comments_statistics[i].comment == NULL) {
2676 cs = &comments_statistics[i];
2679 } else if (strcmp(comments_statistics[i].comment, comment) == 0) {
2680 cs = &comments_statistics[i];