Searched refs:GCOV (Results 1 - 2 of 2) sorted by relevance

/macosx-10.10.1/llvmCore-3425.0.34/include/llvm/Support/
H A DGCOV.h1 //===-- llvm/Support/GCOV.h - LLVM coverage tool ----------------*- C++ -*-===//
30 namespace GCOV { namespace in namespace:llvm
38 } // end GCOV namespace
40 /// GCOVBuffer - A wrapper around MemoryBuffer to provide GCOV specific
46 /// readGCOVFormat - Read GCOV signature at the beginning of buffer.
47 GCOV::GCOVFormat readGCOVFormat() {
51 return GCOV::GCNO_404;
53 return GCOV::GCNO_402;
55 return GCOV::GCDA_404;
57 return GCOV
[all...]
/macosx-10.10.1/llvmCore-3425.0.34/lib/VMCore/
H A DGCOV.cpp10 // GCOV implements the interface to read and write coverage files that use
15 #include "llvm/Support/GCOV.h"
31 static bool isGCDAFile(GCOV::GCOVFormat Format) {
32 return Format == GCOV::GCDA_402 || Format == GCOV::GCDA_404;
36 static bool isGCNOFile(GCOV::GCOVFormat Format) {
37 return Format == GCOV::GCNO_402 || Format == GCOV::GCNO_404;
40 /// read - Read GCOV buffer.
42 GCOV
[all...]

Completed in 97 milliseconds