Searched refs:GCOVLines (Results 1 – 3 of 3) sorted by relevance
181 GCOVLines *&LinesForFile = Lines[Filename]; in addLine()183 LinesForFile = new GCOVLines(); in addLine()190 for (StringMap<GCOVLines *>::iterator I = Lines.begin(), in collectLineCounts()207 for (StringMap<GCOVLines *>::iterator LI = Lines.begin(), in dump()221 void GCOVLines::collectLineCounts(FileInfo &FI, StringRef Filename, in collectLineCounts()229 void GCOVLines::dump() { in dump()
27 class GCOVLines; variable200 StringMap<GCOVLines *> Lines;204 class GCOVLines {206 ~GCOVLines() { Lines.clear(); } in ~GCOVLines()
205 class GCOVLines : public GCOVRecord { class223 GCOVLines(StringRef F, raw_ostream *os) in GCOVLines() function in __anon2f0b86d60211::GCOVLines236 bool operator()(StringMapEntry<GCOVLines *> *LHS, in operator ()()237 StringMapEntry<GCOVLines *> *RHS) const { in operator ()()247 GCOVLines &getFile(StringRef Filename) { in getFile()248 GCOVLines *&Lines = LinesByFile[Filename]; in getFile()250 Lines = new GCOVLines(Filename, os); in getFile()261 SmallVector<StringMapEntry<GCOVLines *> *, 32> SortedLinesByFile; in writeOut()262 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(), in writeOut()274 for (SmallVectorImpl<StringMapEntry<GCOVLines *> *>::iterator in writeOut()[all …]