Lines Matching defs:cit
172 CodeCommentsIterator* cit) {
173 DCHECK(cit->HasCurrent());
174 const char* comment_txt = cit->GetComment();
181 int prev_pc_offset = cit->GetPCOffset();
183 cit->Next();
184 for (; cit->HasCurrent(); cit->Next()) {
187 const char* const txt = cit->GetComment();
188 flat_delta += cit->GetPCOffset() - prev_pc_offset;
191 CollectCommentStatistics(isolate, cit);
193 prev_pc_offset = cit->GetPCOffset();
209 CodeCommentsIterator cit(code.code_comments(), code.code_comments_size());
212 while (cit.HasCurrent()) {
213 delta += static_cast<int>(cit.GetPCOffset() - prev_pc_offset);
214 CollectCommentStatistics(isolate, &cit);
215 prev_pc_offset = cit.GetPCOffset();
216 cit.Next();