OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:GCOVLines
(Results
1 - 2
of
2
) 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/Transforms/Instrumentation/
GCOVProfiling.cpp
205
class
GCOVLines
: public GCOVRecord {
223
GCOVLines
(StringRef F, raw_ostream *os)
236
bool operator()(StringMapEntry<
GCOVLines
*> *LHS,
237
StringMapEntry<
GCOVLines
*> *RHS) const {
247
GCOVLines
&getFile(StringRef Filename) {
248
GCOVLines
*&Lines = LinesByFile[Filename];
250
Lines = new
GCOVLines
(Filename, os);
261
SmallVector<StringMapEntry<
GCOVLines
*> *, 32> SortedLinesByFile;
262
for (StringMap<
GCOVLines
*>::iterator I = LinesByFile.begin(),
274
for (SmallVectorImpl<StringMapEntry<
GCOVLines
*> *>::iterato
[
all
...]
Completed in 229 milliseconds