Home | History | Annotate | Download | only in Instrumentation

Lines Matching defs:Lines

203   // list of line numbers and a single filename, representing lines that belong
208 Lines.push_back(Line);
213 return lengthOfGCOVString(Filename) + 2 + Lines.size();
219 for (int i = 0, e = Lines.size(); i != e; ++i)
220 write(Lines[i]);
230 SmallVector<uint32_t, 32> Lines;
243 // function, number of lines belonging to each block, and a set of edges to
248 GCOVLines *&Lines = LinesByFile[Filename];
249 if (!Lines) {
250 Lines = new GCOVLines(Filename, os);
252 return *Lines;
301 // object users can construct, the blocks and lines will be rooted here.
371 // Emit lines for each block.
466 GCOVLines &Lines = Block.getFile(SP.getFilename());
467 Lines.addLine(Loc.getLine());