Lines Matching refs:CodeCoverageTool

55 class CodeCoverageTool {  class
194 void CodeCoverageTool::error(const Twine &Message, StringRef Whence) { in error()
200 void CodeCoverageTool::warning(const Twine &Message, StringRef Whence) { in warning()
206 void CodeCoverageTool::addCollectedPath(const std::string &Path) { in addCollectedPath()
218 void CodeCoverageTool::collectPaths(const std::string &Path) { in collectPaths()
252 CodeCoverageTool::getFileStatus(StringRef FilePath) { in getFileStatus()
264 bool CodeCoverageTool::isEquivalentFile(StringRef FilePath1, in isEquivalentFile()
272 CodeCoverageTool::getSourceFile(StringRef SourceFile) { in getSourceFile()
293 void CodeCoverageTool::attachExpansionSubViews( in attachExpansionSubViews()
318 void CodeCoverageTool::attachBranchSubViews(SourceCoverageView &View, in attachBranchSubViews()
346 CodeCoverageTool::createFunctionView(const FunctionRecord &Function, in createFunctionView()
368 CodeCoverageTool::createSourceFileView(StringRef SourceFile, in createSourceFileView()
430 std::unique_ptr<CoverageMapping> CodeCoverageTool::load() { in load()
466 void CodeCoverageTool::remapPathNames(const CoverageMapping &Coverage) { in remapPathNames()
510 void CodeCoverageTool::removeUnmappedInputs(const CoverageMapping &Coverage) { in removeUnmappedInputs()
520 void CodeCoverageTool::demangleSymbols(const CoverageMapping &Coverage) { in demangleSymbols()
594 void CodeCoverageTool::writeSourceFileView(StringRef SourceFile, in writeSourceFileView()
617 int CodeCoverageTool::run(Command Cmd, int argc, const char **argv) { in run()
924 int CodeCoverageTool::doShow(int argc, const char **argv, in doShow()
1146 Pool.async(&CodeCoverageTool::writeSourceFileView, this, SourceFile, in doShow()
1154 int CodeCoverageTool::doReport(int argc, const char **argv, in doReport()
1200 int CodeCoverageTool::doExport(int argc, const char **argv, in doExport()
1265 CodeCoverageTool Tool; in showMain()
1266 return Tool.run(CodeCoverageTool::Show, argc, argv); in showMain()
1270 CodeCoverageTool Tool; in reportMain()
1271 return Tool.run(CodeCoverageTool::Report, argc, argv); in reportMain()
1275 CodeCoverageTool Tool; in exportMain()
1276 return Tool.run(CodeCoverageTool::Export, argc, argv); in exportMain()