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

  /external/swiftshader/third_party/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/swiftshader/third_party/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 218 class GCOVLines : public GCOVRecord {
237 GCOVLines(StringRef F, raw_ostream *os)
253 GCOVLines &getFile(StringRef Filename) {
254 GCOVLines *&Lines = LinesByFile[Filename];
256 Lines = new GCOVLines(Filename, os);
267 SmallVector<StringMapEntry<GCOVLines *> *, 32> SortedLinesByFile;
278 [](StringMapEntry<GCOVLines *> *LHS,
279 StringMapEntry<GCOVLines *> *RHS) {
309 StringMap<GCOVLines *> LinesByFile;
563 GCOVLines &Lines = Block.getFile(SP->getFilename())
    [all...]
  /external/swiftshader/third_party/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 160 milliseconds