Home
last modified time | relevance | path

Searched refs:SourceFiles (Results 1 – 25 of 34) sorted by relevance

12

/llvm-project-15.0.7/llvm/tools/llvm-cov/
H A DCoverageExporterLcov.cpp197 ArrayRef<std::string> SourceFiles, in renderFiles() argument
200 for (unsigned I = 0, E = SourceFiles.size(); I < E; ++I) in renderFiles()
201 renderFile(OS, Coverage, SourceFiles[I], FileReports[I], ExportSummaryOnly, in renderFiles()
208 std::vector<std::string> SourceFiles; in renderRoot() local
211 SourceFiles.emplace_back(SF); in renderRoot()
213 renderRoot(SourceFiles); in renderRoot()
216 void CoverageExporterLcov::renderRoot(ArrayRef<std::string> SourceFiles) { in renderRoot() argument
219 SourceFiles, Options); in renderRoot()
220 renderFiles(OS, Coverage, SourceFiles, FileReports, Options.ExportSummaryOnly, in renderRoot()
H A DCoverageExporterJson.cpp230 ArrayRef<std::string> SourceFiles, in renderFiles() argument
237 S = heavyweight_hardware_concurrency(SourceFiles.size()); in renderFiles()
244 for (unsigned I = 0, E = SourceFiles.size(); I < E; ++I) { in renderFiles()
245 auto &SourceFile = SourceFiles[I]; in renderFiles()
275 std::vector<std::string> SourceFiles; in renderRoot() local
278 SourceFiles.emplace_back(SF); in renderRoot()
280 renderRoot(SourceFiles); in renderRoot()
283 void CoverageExporterJson::renderRoot(ArrayRef<std::string> SourceFiles) { in renderRoot() argument
286 SourceFiles, Options); in renderRoot()
287 auto Files = renderFiles(Coverage, SourceFiles, FileReports, Options); in renderRoot()
H A DCodeCoverage.cpp152 std::vector<std::string> SourceFiles; member in __anone83340200111::CodeCoverageTool
215 HadSourceFiles = !SourceFiles.empty(); in addCollectedPath()
458 if (!SourceFiles.empty()) in load()
501 for (std::string &Filename : SourceFiles) { in remapPathNames()
898 for (const std::string &SF : SourceFiles) in run()
1072 if (SourceFiles.empty() && !HadSourceFiles) in doShow()
1091 for (const auto &SourceFile : SourceFiles) in doShow()
1184 if (SourceFiles.empty()) in doReport()
1189 if (SourceFiles.empty()) { in doReport()
1256 if (SourceFiles.empty()) in doExport()
[all …]
H A DCoverageExporterJson.h30 void renderRoot(ArrayRef<std::string> SourceFiles) override;
H A DCoverageExporterLcov.h30 void renderRoot(ArrayRef<std::string> SourceFiles) override;
H A DCoverageExporter.h46 virtual void renderRoot(ArrayRef<std::string> SourceFiles) = 0;
H A DSourceCoverageViewHTML.cpp395 ArrayRef<std::string> SourceFiles, const CoverageMapping &Coverage, in createIndexFile() argument
435 Coverage, Totals, SourceFiles, Opts, Filters); in createIndexFile()
439 emitFileSummary(OSRef, SourceFiles[I], FileReports[I]); in createIndexFile()
456 std::string Link = buildLinkToFile(SourceFiles[I], FileReports[I]); in createIndexFile()
H A Dgcov.cpp86 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore, in gcovMain() local
176 for (const auto &SourceFile : SourceFiles) in gcovMain()
H A DSourceCoverageViewText.cpp32 ArrayRef<std::string> SourceFiles, const CoverageMapping &Coverage, in createIndexFile() argument
41 Report.renderFileReports(OSRef, SourceFiles, Filters); in createIndexFile()
H A DSourceCoverageViewText.h30 Error createIndexFile(ArrayRef<std::string> SourceFiles,
H A DSourceCoverageViewHTML.h32 Error createIndexFile(ArrayRef<std::string> SourceFiles,
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/DIA/
H A DDIASession.cpp297 CComPtr<IDiaEnumSourceFiles> SourceFiles; in findSourceFiles() local
299 Session->findFile(DiaCompiland, Utf16Pattern.m_str, Flags, &SourceFiles)) in findSourceFiles()
301 return std::make_unique<DIAEnumSourceFiles>(*this, SourceFiles); in findSourceFiles()
308 auto SourceFiles = findSourceFiles(Compiland, Pattern, Flags); in findOneSourceFile() local
309 if (!SourceFiles || SourceFiles->getChildCount() == 0) in findOneSourceFile()
311 return SourceFiles->getNext(); in findOneSourceFile()
H A DDIATable.cpp34 return PDB_TableType::SourceFiles; in getTableType()
/llvm-project-15.0.7/llvm/test/DebugInfo/PDB/
H A Dpdbdump-source-names.test17 CHECK1: SourceFiles:
20 CHECK2: SourceFiles:
/llvm-project-15.0.7/lld/test/COFF/
H A Dpdb-relative-source-lines.test51 CHECK: SourceFiles:
63 CHECK: SourceFiles:
99 POSIX: SourceFiles:
111 POSIX: SourceFiles:
H A Dpdb-source-lines.test38 CHECK-NEXT: SourceFiles:
99 CHECK-NEXT: SourceFiles:
/llvm-project-15.0.7/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.h112 return makeArrayRef(SourceFiles); in source_files()
143 std::vector<std::string> SourceFiles; variable
/llvm-project-15.0.7/llvm/test/DebugInfo/PDB/Inputs/
H A Dsource-names-2.yaml6 SourceFiles:
H A Dsource-names-1.yaml6 SourceFiles:
H A Ddebug-subsections.yaml27 SourceFiles:
/llvm-project-15.0.7/clang/tools/clang-extdef-mapping/
H A DClangExtDefMapGen.cpp171 static int HandleFiles(ArrayRef<std::string> SourceFiles, in HandleFiles() argument
178 for (StringRef Src : SourceFiles) { in HandleFiles()
/llvm-project-15.0.7/llvm/lib/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.cpp102 SourceFiles.push_back(std::string(Path)); in addSourceFile()
127 Layout.NumFiles = SourceFiles.size(); in finalize()
H A DSymbolCache.cpp82 SourceFiles.push_back(nullptr); in SymbolCache()
615 assert(FileId < SourceFiles.size()); in getSourceFileById()
622 new NativeSourceFile(*SourceFiles[FileId].get())); in getSourceFileById()
631 SymIndexId Id = SourceFiles.size(); in getOrCreateSourceFile()
633 SourceFiles.push_back(std::move(SrcFile)); in getOrCreateSourceFile()
/llvm-project-15.0.7/llvm/tools/llvm-pdbutil/
H A DPdbYaml.h68 std::vector<StringRef> SourceFiles; member
/llvm-project-15.0.7/lldb/include/lldb/Interpreter/
H A DCommandCompletions.h87 static void SourceFiles(CommandInterpreter &interpreter,

12