Lines Matching defs:line
22 void SourcePositionTable::SetPosition(int pc_offset, int line,
25 DCHECK_GT(line, 0); // The 1-based number of the source line.
27 // optimized code. Usually these map to the same line, so there is no
28 // difference here as we only store line number and not line/col in the form
39 pc_offsets_to_lines_.back().line_number != line ||
41 pc_offsets_to_lines_.push_back({pc_offset, line, inlining_id});
397 // Increment a hit counter of a certain source line.
398 // Add a new source line if not found.
420 entry->line = p->first;
740 [](const SampleInfo& sample) { return sample.line != 0; });
744 value->AppendInteger(samples_[i].line);
798 writer_->AddString("\"line\":");
799 writer_->AddNumber(entries[i].line);