Home
last modified time | relevance | path

Searched refs:CoverageData (Results 1 – 2 of 2) sorted by relevance

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ProfileData/Coverage/
DCoverageMapping.h478 class CoverageData {
486 CoverageData() = default;
488 CoverageData(StringRef Filename) : Filename(Filename) {} in CoverageData() function
571 CoverageData getCoverageForFile(StringRef Filename) const;
574 CoverageData getCoverageForFunction(const FunctionRecord &Function) const;
577 CoverageData getCoverageForExpansion(const ExpansionRecord &Expansion) const;
637 LineCoverageIterator(const CoverageData &CD) in LineCoverageIterator()
640 LineCoverageIterator(const CoverageData &CD, unsigned Line) in LineCoverageIterator()
664 const CoverageData &CD;
675 getLineCoverageStats(const coverage::CoverageData &CD) { in getLineCoverageStats()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ProfileData/Coverage/
DCoverageMapping.cpp648 CoverageData CoverageMapping::getCoverageForFile(StringRef Filename) const { in getCoverageForFile()
649 CoverageData FileCoverage(Filename); in getCoverageForFile()
699 CoverageData
703 return CoverageData(); in getCoverageForFunction()
705 CoverageData FunctionCoverage(Function.Filenames[*MainFileID]); in getCoverageForFunction()
721 CoverageData CoverageMapping::getCoverageForExpansion( in getCoverageForExpansion()
723 CoverageData ExpansionCoverage( in getCoverageForExpansion()