HomeSort by: relevance | last modified time | path
    Searched refs:SourceFiles (Results 1 - 23 of 23) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/tools/llvm-cov/
CoverageExporterJson.h 30 void renderRoot(ArrayRef<std::string> SourceFiles) override;
CoverageExporterLcov.h 30 void renderRoot(ArrayRef<std::string> SourceFiles) override;
CoverageExporter.h 46 virtual void renderRoot(ArrayRef<std::string> SourceFiles) = 0;
CoverageExporterLcov.cpp 197 ArrayRef<std::string> SourceFiles,
200 for (unsigned I = 0, E = SourceFiles.size(); I < E; ++I)
201 renderFile(OS, Coverage, SourceFiles[I], FileReports[I], ExportSummaryOnly,
208 std::vector<std::string> SourceFiles;
211 SourceFiles.emplace_back(SF);
213 renderRoot(SourceFiles);
216 void CoverageExporterLcov::renderRoot(ArrayRef<std::string> SourceFiles) {
219 SourceFiles, Options);
220 renderFiles(OS, Coverage, SourceFiles, FileReports, Options.ExportSummaryOnly,
CoverageExporterJson.cpp 230 ArrayRef<std::string> SourceFiles,
237 S = heavyweight_hardware_concurrency(SourceFiles.size());
244 for (unsigned I = 0, E = SourceFiles.size(); I < E; ++I) {
245 auto &SourceFile = SourceFiles[I];
275 std::vector<std::string> SourceFiles;
278 SourceFiles.emplace_back(SF);
280 renderRoot(SourceFiles);
283 void CoverageExporterJson::renderRoot(ArrayRef<std::string> SourceFiles) {
286 SourceFiles, Options);
287 auto Files = renderFiles(Coverage, SourceFiles, FileReports, Options)
    [all...]
CodeCoverage.cpp 152 std::vector<std::string> SourceFiles;
214 SourceFiles.emplace_back(EffectivePath.str());
215 HadSourceFiles = !SourceFiles.empty();
460 if (!SourceFiles.empty())
503 for (std::string &Filename : SourceFiles) {
517 llvm::erase_if(SourceFiles, [&](const std::string &SF) {
871 for (const std::string &SF : SourceFiles)
999 if (SourceFiles.empty() && !HadSourceFiles)
1003 SourceFiles.push_back(std::string(Filename));
1008 if (Error E = Printer->createIndexFile(SourceFiles, *Coverage, Filters))
    [all...]
SourceCoverageViewText.h 30 Error createIndexFile(ArrayRef<std::string> SourceFiles,
SourceCoverageViewHTML.h 32 Error createIndexFile(ArrayRef<std::string> SourceFiles,
gcov.cpp 86 cl::list<std::string> SourceFiles(cl::Positional, cl::OneOrMore,
176 for (const auto &SourceFile : SourceFiles)
SourceCoverageViewHTML.cpp 395 ArrayRef<std::string> SourceFiles, const CoverageMapping &Coverage,
435 Coverage, Totals, SourceFiles, Opts, Filters);
439 emitFileSummary(OSRef, SourceFiles[I], FileReports[I]);
456 std::string Link = buildLinkToFile(SourceFiles[I], FileReports[I]);
SourceCoverageViewText.cpp 32 ArrayRef<std::string> SourceFiles, const CoverageMapping &Coverage,
41 Report.renderFileReports(OSRef, SourceFiles, Filters);
SourceCoverageView.h 132 virtual Error createIndexFile(ArrayRef<std::string> SourceFiles,
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/DIA/
DIATable.cpp 34 return PDB_TableType::SourceFiles;
DIASession.cpp 297 CComPtr<IDiaEnumSourceFiles> SourceFiles;
299 Session->findFile(DiaCompiland, Utf16Pattern.m_str, Flags, &SourceFiles))
301 return std::make_unique<DIAEnumSourceFiles>(*this, SourceFiles);
308 auto SourceFiles = findSourceFiles(Compiland, Pattern, Flags);
309 if (!SourceFiles || SourceFiles->getChildCount() == 0)
311 return SourceFiles->getNext();
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
DbiModuleDescriptorBuilder.h 114 return makeArrayRef(SourceFiles);
145 std::vector<std::string> SourceFiles;
SymbolCache.h 57 mutable std::vector<std::unique_ptr<NativeSourceFile>> SourceFiles;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-pdbutil/
PdbYaml.h 72 std::vector<StringRef> SourceFiles;
PdbYaml.cpp 186 IO.mapOptional("SourceFiles", Obj.SourceFiles);
YAMLOutputStyle.cpp 227 DMI.SourceFiles.assign(Files.begin(), Files.end());
llvm-pdbutil.cpp 815 for (auto S : MI.SourceFiles)
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/PDB/Native/
DbiModuleDescriptorBuilder.cpp 98 SourceFiles.push_back(std::string(Path));
123 Layout.NumFiles = SourceFiles.size();
SymbolCache.cpp 77 SourceFiles.push_back(nullptr);
610 assert(FileId < SourceFiles.size());
617 new NativeSourceFile(*SourceFiles[FileId].get()));
626 SymIndexId Id = SourceFiles.size();
628 SourceFiles.push_back(std::move(SrcFile));
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/
PDBTypes.h 89 SourceFiles,

Completed in 39 milliseconds