HomeSort by relevance Sort by last modified time
    Searched refs:GCOVLines (Results 1 - 3 of 3) sorted by null

  /external/llvm/include/llvm/Support/
GCOV.h 27 class GCOVLines;
198 StringMap<GCOVLines *> Lines;
201 /// GCOVLines - A wrapper around a vector of int to keep track of line nos.
202 class GCOVLines {
204 ~GCOVLines() { Lines.clear(); }
  /external/llvm/lib/VMCore/
GCOV.cpp 179 GCOVLines *&LinesForFile = Lines[Filename];
181 LinesForFile = new GCOVLines();
188 for (StringMap<GCOVLines *>::iterator I = Lines.begin(),
205 for (StringMap<GCOVLines *>::iterator LI = Lines.begin(),
215 // GCOVLines implementation.
219 void GCOVLines::collectLineCounts(FileInfo &FI, StringRef Filename,
226 /// dump - Dump GCOVLines content on standard out for debugging purposes.
227 void GCOVLines::dump() {
  /external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp 167 class GCOVLines : public GCOVRecord {
185 GCOVLines(StringRef F, raw_ostream *os)
200 GCOVLines &getFile(StringRef Filename) {
201 GCOVLines *&Lines = LinesByFile[Filename];
203 Lines = new GCOVLines(Filename, os);
214 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(),
222 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(),
242 StringMap<GCOVLines *> LinesByFile;
408 GCOVLines &Lines = Block.getFile(SP.getFilename());

Completed in 1891 milliseconds