Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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 __anonc01b54db0111::CodeCoverageTool
214 SourceFiles.emplace_back(EffectivePath.str()); in addCollectedPath()
215 HadSourceFiles = !SourceFiles.empty(); in addCollectedPath()
460 if (!SourceFiles.empty()) in load()
503 for (std::string &Filename : SourceFiles) { in remapPathNames()
517 llvm::erase_if(SourceFiles, [&](const std::string &SF) { in removeUnmappedInputs()
871 for (const std::string &SF : SourceFiles) in run()
999 if (SourceFiles.empty() && !HadSourceFiles) in doShow()
1003 SourceFiles.push_back(std::string(Filename)); in doShow()
1008 if (Error E = Printer->createIndexFile(SourceFiles, *Coverage, Filters)) { in doShow()
[all …]
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 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 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,
H A DSourceCoverageView.h132 virtual Error createIndexFile(ArrayRef<std::string> SourceFiles,
/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
H A DDbiModuleDescriptorBuilder.h114 return makeArrayRef(SourceFiles); in source_files()
145 std::vector<std::string> SourceFiles; variable
H A DSymbolCache.h57 mutable std::vector<std::unique_ptr<NativeSourceFile>> SourceFiles; variable
/netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
H A DSymbolCache.cpp77 SourceFiles.push_back(nullptr); in SymbolCache()
610 assert(FileId < SourceFiles.size()); in getSourceFileById()
617 new NativeSourceFile(*SourceFiles[FileId].get())); in getSourceFileById()
626 SymIndexId Id = SourceFiles.size(); in getOrCreateSourceFile()
628 SourceFiles.push_back(std::move(SrcFile)); in getOrCreateSourceFile()
H A DDbiModuleDescriptorBuilder.cpp98 SourceFiles.push_back(std::string(Path)); in addSourceFile()
123 Layout.NumFiles = SourceFiles.size(); in finalize()
/netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
H A DPdbYaml.h72 std::vector<StringRef> SourceFiles; member
H A DPdbYaml.cpp186 IO.mapOptional("SourceFiles", Obj.SourceFiles); in mapping()
H A DYAMLOutputStyle.cpp227 DMI.SourceFiles.assign(Files.begin(), Files.end()); in dumpDbiStream()
H A Dllvm-pdbutil.cpp815 for (auto S : MI.SourceFiles) in yamlToPdb()
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
H A DPDBTypes.h89 SourceFiles, enumerator