Home | History | Annotate | Download | only in Instrumentation

Lines Matching refs:Lines

209   // list of line numbers and a single filename, representing lines that belong
215 Lines.push_back(Line);
220 return lengthOfGCOVString(Filename) + 2 + Lines.size();
226 for (int i = 0, e = Lines.size(); i != e; ++i)
227 write(Lines[i]);
237 SmallVector<uint32_t, 32> Lines;
242 // function, number of lines belonging to each block, and a set of edges to
247 GCOVLines *&Lines = LinesByFile[Filename];
248 if (!Lines) {
249 Lines = new GCOVLines(Filename, os);
251 return *Lines;
303 // object users can construct, the blocks and lines will be rooted here.
400 // Emit lines for each block.
452 // Check whether this function actually has any source lines. Not only
464 // Artificial lines such as calls to the global constructors.
533 // Artificial lines such as calls to the global constructors.
540 GCOVLines &Lines = Block.getFile(SP.getFilename());
541 Lines.addLine(Loc.getLine());