HomeSort by relevance Sort by last modified time
    Searched defs:GCOVLines (Results 1 - 2 of 2) 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/Transforms/Instrumentation/
GCOVProfiling.cpp 163 class GCOVLines : public GCOVRecord {
181 GCOVLines(StringRef F, raw_ostream *os)
196 GCOVLines &getFile(StringRef Filename) {
197 GCOVLines *&Lines = LinesByFile[Filename];
199 Lines = new GCOVLines(Filename, os);
210 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(),
218 for (StringMap<GCOVLines *>::iterator I = LinesByFile.begin(),
238 StringMap<GCOVLines *> LinesByFile;
400 GCOVLines &Lines = Block.getFile(SP.getFilename());

Completed in 48 milliseconds