| /freebsd/contrib/llvm-project/llvm/tools/llvm-cov/ |
| H A D | CoverageExporterLcov.cpp | 276 ArrayRef<std::string> SourceFiles, in renderFiles() argument 280 for (unsigned I = 0, E = SourceFiles.size(); I < E; ++I) in renderFiles() 281 renderFile(OS, Coverage, SourceFiles[I], FileReports[I], ExportSummaryOnly, in renderFiles() 288 std::vector<std::string> SourceFiles; in renderRoot() local 291 SourceFiles.emplace_back(SF); in renderRoot() 293 renderRoot(SourceFiles); in renderRoot() 296 void CoverageExporterLcov::renderRoot(ArrayRef<std::string> SourceFiles) { in renderRoot() argument 299 SourceFiles, Options); in renderRoot() 300 renderFiles(OS, Coverage, SourceFiles, FileReports, Options.ExportSummaryOnly, in renderRoot()
|
| H A D | CoverageExporterJson.cpp | 272 ArrayRef<std::string> SourceFiles, in renderFiles() argument 279 S = heavyweight_hardware_concurrency(SourceFiles.size()); in renderFiles() 286 for (unsigned I = 0, E = SourceFiles.size(); I < E; ++I) { in renderFiles() 287 auto &SourceFile = SourceFiles[I]; in renderFiles() 318 std::vector<std::string> SourceFiles; in renderRoot() local 321 SourceFiles.emplace_back(SF); in renderRoot() 323 renderRoot(SourceFiles); in renderRoot() 326 void CoverageExporterJson::renderRoot(ArrayRef<std::string> SourceFiles) { in renderRoot() argument 329 SourceFiles, Options); in renderRoot() 330 auto Files = renderFiles(Coverage, SourceFiles, FileReports, Options); in renderRoot()
|
| H A D | CodeCoverage.cpp | 159 std::vector<std::string> SourceFiles; member in __anon1c6dbef00111::CodeCoverageTool 226 SourceFiles.emplace_back(EffectivePath.str()); in addCollectedPath() 227 HadSourceFiles = !SourceFiles.empty(); in addCollectedPath() 488 if (!SourceFiles.empty()) in load() 537 for (std::string &Filename : SourceFiles) { in remapPathNames() 551 llvm::erase_if(SourceFiles, [&](const std::string &SF) { in removeUnmappedInputs() 957 for (const std::string &SF : SourceFiles) in run() 1159 if (SourceFiles.empty() && !HadSourceFiles) in doShow() 1163 SourceFiles.push_back(std::string(Filename)); in doShow() 1168 if (Error E = Printer->createIndexFile(SourceFiles, *Coverage, Filters)) { in doShow() [all …]
|
| H A D | SourceCoverageViewText.cpp | 34 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 D | SourceCoverageViewText.h | 30 Error createIndexFile(ArrayRef<std::string> SourceFiles, 45 Error createIndexFile(ArrayRef<std::string> SourceFiles,
|
| H A D | SourceCoverageViewHTML.h | 32 Error createIndexFile(ArrayRef<std::string> SourceFiles, 58 Error createIndexFile(ArrayRef<std::string> SourceFiles,
|
| H A D | SourceCoverageViewHTML.cpp | 642 ArrayRef<std::string> SourceFiles, const CoverageMapping &Coverage, in createIndexFile() argument 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 createIndexFile() argument 858 if (SourceFiles.size() <= 1) in createIndexFile() 859 return CoveragePrinterHTML::createIndexFile(SourceFiles, Coverage, Filters); in createIndexFile() 871 auto TotalsOrErr = Report.prepareDirectoryReports(SourceFiles); in createIndexFile()
|
| H A D | CoverageExporterJson.h | 30 void renderRoot(ArrayRef<std::string> SourceFiles) override;
|
| H A D | CoverageExporterLcov.h | 30 void renderRoot(ArrayRef<std::string> SourceFiles) override;
|
| H A D | CoverageExporter.h | 46 virtual void renderRoot(ArrayRef<std::string> SourceFiles) = 0;
|
| H A D | gcov.cpp | 84 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore, 174 for (const auto &SourceFile : SourceFiles) in gcovMain() 86 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore, gcovMain() local
|
| H A D | CoverageReport.h | 95 prepareDirectoryReports(ArrayRef<std::string> SourceFiles);
|
| H A D | CoverageReport.cpp | 589 ArrayRef<std::string> SourceFiles) { in prepareDirectoryReports() argument 590 std::vector<StringRef> Files(SourceFiles.begin(), SourceFiles.end()); in prepareDirectoryReports()
|
| H A D | SourceCoverageView.h | 145 virtual Error createIndexFile(ArrayRef<std::string> SourceFiles,
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/DIA/ |
| H A D | DIASession.cpp | 297 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 D | DIATable.cpp | 34 return PDB_TableType::SourceFiles; in getTableType()
|
| /freebsd/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | HeaderIncludeGen.cpp | 381 SmallVector<FileEntryRef> SourceFiles; in EndOfMainFile() local 384 SourceFiles.push_back(F->first); in EndOfMainFile() 386 llvm::sort(SourceFiles, [](const FileEntryRef &LHS, const FileEntryRef &RHS) { in EndOfMainFile() 394 for (auto S = SourceFiles.begin(), SE = SourceFiles.end(); S != SE; ++S) { in EndOfMainFile()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/DebugInfo/PDB/Native/ |
| H A D | DbiModuleDescriptorBuilder.h | 112 ArrayRef<std::string> source_files() const { return SourceFiles; } in source_files() 142 std::vector<std::string> SourceFiles; variable
|
| H A D | SymbolCache.h | 64 mutable std::vector<std::unique_ptr<NativeSourceFile>> SourceFiles; variable
|
| /freebsd/sys/contrib/libsodium/packaging/nuget/ |
| H A D | package.gsl | 209 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x86-$(package.platformtoolse… 210 …<!--<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x86-$(package.platformto… 215 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x86-$(package.platformtoolse… 216 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x86-$(package.platformtoolse… 221 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x64-$(package.platformtoolse… 222 …<!--<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x64-$(package.platformto… 227 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x64-$(package.platformtoolse… 228 …<Copy SourceFiles="$\(MSBuildThisFileDirectory)bin\\$(package.target)-x64-$(package.platformtoolse…
|
| /freebsd/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | DbiModuleDescriptorBuilder.cpp | 102 SourceFiles.push_back(std::string(Path)); in addSourceFile() 127 Layout.NumFiles = SourceFiles.size(); in finalize()
|
| H A D | SymbolCache.cpp | 82 SourceFiles.push_back(nullptr); in SymbolCache() 619 assert(FileId < SourceFiles.size()); in getSourceFileById() 625 return std::make_unique<NativeSourceFile>(*SourceFiles[FileId].get()); in getSourceFileById() 635 SymIndexId Id = SourceFiles.size(); in getOrCreateSourceFile() 637 SourceFiles.push_back(std::move(SrcFile)); in getOrCreateSourceFile()
|
| /freebsd/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | PdbYaml.h | 69 std::vector<StringRef> SourceFiles; member
|
| H A D | PdbYaml.cpp | 193 IO.mapOptional("SourceFiles", Obj.SourceFiles); in mapping()
|
| /freebsd/contrib/llvm-project/lldb/include/lldb/Interpreter/ |
| H A D | CommandCompletions.h | 54 static void SourceFiles(CommandInterpreter &interpreter,
|