Lines Matching refs:comments_statistics
109 CommentStatistic* comments_statistics = in ReportCodeStatistics() local
115 const CommentStatistic& cs = comments_statistics[i]; in ReportCodeStatistics()
132 CommentStatistic* comments_statistics = in ResetCodeStatistics() local
135 comments_statistics[i].Clear(); in ResetCodeStatistics()
137 comments_statistics[CommentStatistic::kMaxComments].comment = "Unknown"; in ResetCodeStatistics()
138 comments_statistics[CommentStatistic::kMaxComments].size = 0; in ResetCodeStatistics()
139 comments_statistics[CommentStatistic::kMaxComments].count = 0; in ResetCodeStatistics()
146 CommentStatistic* comments_statistics = in EnterComment() local
150 CommentStatistic* cs = &comments_statistics[CommentStatistic::kMaxComments]; in EnterComment()
154 if (comments_statistics[i].comment == nullptr) { in EnterComment()
155 cs = &comments_statistics[i]; in EnterComment()
158 } else if (strcmp(comments_statistics[i].comment, comment) == 0) { in EnterComment()
159 cs = &comments_statistics[i]; in EnterComment()