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()
273 CodeCoverageTool::getSourceFile(StringRef SourceFile) { in getSourceFile()
294 void CodeCoverageTool::attachExpansionSubViews( in attachExpansionSubViews()
319 void CodeCoverageTool::attachBranchSubViews(SourceCoverageView &View, in attachBranchSubViews()
347 CodeCoverageTool::createFunctionView(const FunctionRecord &Function, in createFunctionView()
369 CodeCoverageTool::createSourceFileView(StringRef SourceFile, in createSourceFileView()
431 std::unique_ptr<CoverageMapping> CodeCoverageTool::load() { in load()
468 void CodeCoverageTool::remapPathNames(const CoverageMapping &Coverage) { in remapPathNames()
512 void CodeCoverageTool::removeUnmappedInputs(const CoverageMapping &Coverage) { in removeUnmappedInputs()
522 void CodeCoverageTool::demangleSymbols(const CoverageMapping &Coverage) { in demangleSymbols()
596 void CodeCoverageTool::writeSourceFileView(StringRef SourceFile, in writeSourceFileView()
619 int CodeCoverageTool::run(Command Cmd, int argc, const char **argv) { in run()
897 int CodeCoverageTool::doShow(int argc, const char **argv, in doShow()
1073 Pool.async(&CodeCoverageTool::writeSourceFileView, this, SourceFile, in doShow()
1081 int CodeCoverageTool::doReport(int argc, const char **argv, in doReport()
1121 int CodeCoverageTool::doExport(int argc, const char **argv, in doExport()
1180 CodeCoverageTool Tool; in showMain()
1181 return Tool.run(CodeCoverageTool::Show, argc, argv); in showMain()
1185 CodeCoverageTool Tool; in reportMain()
1186 return Tool.run(CodeCoverageTool::Report, argc, argv); in reportMain()
1190 CodeCoverageTool Tool; in exportMain()
1191 return Tool.run(CodeCoverageTool::Export, argc, argv); in exportMain()