Lines Matching defs:start_line
3374 void WriteLcovDataForRange(std::vector<uint32_t>* lines, int start_line,
3380 (*lines)[start_line] = std::max((*lines)[start_line], count);
3383 for (int k = start_line + 1; k < end_line; k++) (*lines)[k] = count;
3388 const std::string& name, int start_line,
3390 WriteLcovDataForRange(lines, start_line, end_line, count);
3391 sink << "FN:" << start_line + 1 << "," << name << std::endl;
3424 int start_line = start.GetLineNumber();
3433 name_stream << "<" << start_line + 1 << "-";
3437 WriteLcovDataForNamedRange(sink, &lines, name_stream.str(), start_line,
3444 int start_line = LineFromOffset(script, block_data.StartOffset());
3447 WriteLcovDataForRange(&lines, start_line, end_line, count);