Home | History | Annotate | Download | only in Instrumentation

Lines Matching refs:Lines

207   // list of line numbers and a single filename, representing lines that belong
213 Lines.push_back(Line);
218 return lengthOfGCOVString(Filename) + 2 + Lines.size();
224 for (int i = 0, e = Lines.size(); i != e; ++i)
225 write(Lines[i]);
235 SmallVector<uint32_t, 32> Lines;
240 // function, number of lines belonging to each block, and a set of edges to
245 GCOVLines *&Lines = LinesByFile[Filename];
246 if (!Lines) {
247 Lines = new GCOVLines(Filename, os);
249 return *Lines;
287 // Only allow copy before edges and lines have been added. After that,
309 // object users can construct, the blocks and lines will be rooted here.
407 // Emit lines for each block.
459 // Check whether this function actually has any source lines. Not only
472 // Artificial lines such as calls to the global constructors.
536 // Artificial lines such as calls to the global constructors.
544 GCOVLines &Lines = Block.getFile(SP->getFilename());
545 Lines.addLine(Loc.getLine());