OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:GCOVLines
(Results
1 - 3
of
3
) sorted by null
/external/llvm/include/llvm/Support/
GCOV.h
27
class
GCOVLines
;
200
StringMap<
GCOVLines
*> Lines;
203
///
GCOVLines
- A wrapper around a vector of int to keep track of line nos.
204
class
GCOVLines
{
206
~
GCOVLines
() { Lines.clear(); }
/external/llvm/lib/IR/
GCOV.cpp
181
GCOVLines
*&LinesForFile = Lines[Filename];
183
LinesForFile = new
GCOVLines
();
190
for (StringMap<
GCOVLines
*>::iterator I = Lines.begin(),
207
for (StringMap<
GCOVLines
*>::iterator LI = Lines.begin(),
217
//
GCOVLines
implementation.
221
void
GCOVLines
::collectLineCounts(FileInfo &FI, StringRef Filename,
228
/// dump - Dump
GCOVLines
content on standard out for debugging purposes.
229
void
GCOVLines
::dump() {
/external/llvm/lib/Transforms/Instrumentation/
GCOVProfiling.cpp
196
class
GCOVLines
: public GCOVRecord {
214
GCOVLines
(StringRef F, raw_ostream *os)
229
GCOVLines
&getFile(StringRef Filename) {
230
GCOVLines
*&Lines = LinesByFile[Filename];
232
Lines = new
GCOVLines
(Filename, os);
243
for (StringMap<
GCOVLines
*>::iterator I = LinesByFile.begin(),
251
for (StringMap<
GCOVLines
*>::iterator I = LinesByFile.begin(),
271
StringMap<
GCOVLines
*> LinesByFile;
435
GCOVLines
&Lines = Block.getFile(SP.getFilename());
Completed in 95 milliseconds