Home
last modified time | relevance | path

Searched full:sourcefiles (Results 1 – 25 of 36) sorted by relevance

12

/llvm-project/llvm/tools/llvm-cov/
H A DCoverageExporterLcov.cpp199 ArrayRef<std::string> SourceFiles, in renderFiles() argument
203 for (unsigned I = 0, E = SourceFiles.size(); I < E; ++I) in renderFiles()
204 renderFile(OS, Coverage, SourceFiles[I], FileReports[I], ExportSummaryOnly, in renderFiles()
211 std::vector<std::string> SourceFiles; in renderRoot() local
214 SourceFiles.emplace_back(SF); in renderRoot()
216 renderRoot(SourceFiles); in renderRoot()
219 void CoverageExporterLcov::renderRoot(ArrayRef<std::string> SourceFiles) { in renderRoot() argument
222 SourceFiles, Options); in renderRoot()
223 renderFiles(OS, Coverage, SourceFiles, FileReports, Options.ExportSummaryOnly, in renderRoot()
H A DCoverageExporterJson.cpp270 ArrayRef<std::string> SourceFiles, in renderFiles() argument
277 S = heavyweight_hardware_concurrency(SourceFiles.size()); in renderFiles()
284 for (unsigned I = 0, E = SourceFiles.size(); I < E; ++I) { in renderFiles()
285 auto &SourceFile = SourceFiles[I]; in renderFiles()
316 std::vector<std::string> SourceFiles; in renderRoot() local
319 SourceFiles.emplace_back(SF); in renderRoot()
321 renderRoot(SourceFiles); in renderRoot()
324 void CoverageExporterJson::renderRoot(ArrayRef<std::string> SourceFiles) { in renderRoot() argument
327 SourceFiles, Options); in renderRoot()
328 auto Files = renderFiles(Coverage, SourceFiles, FileReport in renderRoot()
[all...]
H A DCodeCoverage.cpp159 std::vector<std::string> SourceFiles; member in __anon3f59e5c30111::CodeCoverageTool
226 SourceFiles.emplace_back(EffectivePath.str()); in addCollectedPath()
227 HadSourceFiles = !SourceFiles.empty(); in addCollectedPath()
486 if (!SourceFiles.empty()) in load()
535 for (std::string &Filename : SourceFiles) { in remapPathNames()
549 llvm::erase_if(SourceFiles, [&](const std::string &SF) { in removeUnmappedInputs()
942 for (const std::string &SF : SourceFiles) in run()
1142 if (SourceFiles.empty() && !HadSourceFiles) in doShow()
1146 SourceFiles.push_back(std::string(Filename)); in doShow()
1151 if (Error E = Printer->createIndexFile(SourceFiles, *Coverag in doShow()
[all...]
H A DSourceCoverageViewText.cpp34 ArrayRef<std::string> SourceFiles, const CoverageMapping &Coverage, in createIndexFile() argument
43 Report.renderFileReports(OSRef, SourceFiles, Filters); in createIndexFile()
94 ArrayRef<std::string> SourceFiles, const CoverageMapping &Coverage, in createIndexFile() argument
96 if (SourceFiles.size() <= 1) in createIndexFile()
97 return CoveragePrinterText::createIndexFile(SourceFiles, Coverage, Filters); in createIndexFile()
100 auto TotalsOrErr = Report.prepareDirectoryReports(SourceFiles); in createIndexFile()
H A DCoverageReport.h88 /// Prepare file reports for each directory in \p SourceFiles. The total
90 /// files. The size of \p SourceFiles must be greater than 1 or else the
95 prepareDirectoryReports(ArrayRef<std::string> SourceFiles);
H A DSourceCoverageViewText.h30 Error createIndexFile(ArrayRef<std::string> SourceFiles,
45 Error createIndexFile(ArrayRef<std::string> SourceFiles,
H A DSourceCoverageViewHTML.h32 Error createIndexFile(ArrayRef<std::string> SourceFiles,
58 Error createIndexFile(ArrayRef<std::string> SourceFiles,
H A DSourceCoverageViewHTML.cpp642 ArrayRef<std::string> SourceFiles, const CoverageMapping &Coverage, in emitFileSummary()
666 Coverage, Totals, SourceFiles, Opts, Filters); in createIndexFile()
670 emitFileSummary(OSRef, SourceFiles[I], FileReports[I]); in createIndexFile()
687 std::string Link = buildLinkToFile(SourceFiles[I], FileReports[I]); in createIndexFile()
854 ArrayRef<std::string> SourceFiles, const CoverageMapping &Coverage, in buildRelLinkToFile()
856 // The createSubIndexFile function only works when SourceFiles is
858 if (SourceFiles.size() <= 1) in createIndexFile()
859 return CoveragePrinterHTML::createIndexFile(SourceFiles, Coverage, Filters); in createIndexFile() argument
871 auto TotalsOrErr = Report.prepareDirectoryReports(SourceFiles); in createIndexFile()
647 createIndexFile(ArrayRef<std::string> SourceFiles,const CoverageMapping & Coverage,const CoverageFiltersMatchAll & Filters) createIndexFile() argument
H A DCoverageExporterLcov.h30 void renderRoot(ArrayRef<std::string> SourceFiles) override;
H A DCoverageExporterJson.h30 void renderRoot(ArrayRef<std::string> SourceFiles) override;
H A DCoverageExporter.h46 virtual void renderRoot(ArrayRef<std::string> SourceFiles) = 0;
H A Dgcov.cpp84 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore, in gcovMain() local
174 for (const auto &SourceFile : SourceFiles) in gcovMain()
/llvm-project/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/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/llvm/test/DebugInfo/PDB/
H A Dpdbdump-source-names.test17 CHECK1: SourceFiles:
20 CHECK2: SourceFiles:
/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.h111 ArrayRef<std::string> source_files() const { return SourceFiles; } in source_files()
141 std::vector<std::string> SourceFiles; variable
/llvm-project/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/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp82 SourceFiles.push_back(nullptr); in SymbolCache()
619 assert(FileId < SourceFiles.size()); in getSourceFileById()
625 return std::make_unique<NativeSourceFile>(*SourceFiles[FileId].get()); in getOrCreateSourceFile()
634 SymIndexId Id = SourceFiles.size(); in getOrCreateSourceFile()
636 SourceFiles.push_back(std::move(SrcFile));
H A DDbiModuleDescriptorBuilder.cpp102 SourceFiles.push_back(std::string(Path)); in addSourceFile()
127 Layout.NumFiles = SourceFiles.size(); in finalize()
/llvm-project/clang/tools/clang-extdef-mapping/
H A DClangExtDefMapGen.cpp176 static int HandleFiles(ArrayRef<std::string> SourceFiles, in HandleFiles() argument
183 for (StringRef Src : SourceFiles) { in HandleFiles()
/llvm-project/llvm/tools/llvm-pdbutil/
H A DPdbYaml.cpp186 IO.mapOptional("SourceFiles", Obj.SourceFiles); in mapping()

12