| /freebsd-13.1/contrib/llvm-project/llvm/lib/Support/ |
| H A D | FileCollector.cpp | 21 void FileCollectorBase::addFile(const Twine &File) { in addFile() function in FileCollectorBase 141 addFile(Dir); in addDirectoryImpl() 146 addFile(It->path()); in addDirectoryImpl() 264 Collector->addFile(Path); in status() 272 Collector->addFile(Path); in openFileForRead() 285 Collector->addFile(Path); in getRealPath() 287 Collector->addFile(Output); in getRealPath()
|
| H A D | VirtualFileSystem.cpp | 714 bool InMemoryFileSystem::addFile(const Twine &P, time_t ModificationTime, in addFile() function in llvm::vfs::InMemoryFileSystem 805 bool InMemoryFileSystem::addFile(const Twine &P, time_t ModificationTime, in addFile() function in llvm::vfs::InMemoryFileSystem 811 return addFile(P, ModificationTime, std::move(Buffer), User, Group, Type, in addFile() 821 return addFile(P, ModificationTime, llvm::MemoryBuffer::getMemBuffer(Buffer), in addFileNoOwn() 878 return this->addFile(FromPath, 0, nullptr, None, None, None, None, in addHardLink()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | ModuleDependencyCollector.cpp | 36 Collector.addFile(Filename); in visitInputFile() 56 Collector.addFile(File->getName()); in InclusionDirective() 67 Collector.addFile(HeaderPath); in moduleMapAddHeader() 196 void ModuleDependencyCollector::addFile(StringRef Filename, StringRef FileDst) { in addFile() function in ModuleDependencyCollector
|
| H A D | PrecompiledPreamble.cpp | 64 PCHFS->addFile(PCHFilename, 0, std::move(PCHBuffer)); in createVFSOverlayForPreamblePCH() 159 void addFile(StringRef File); 180 void TemporaryFiles::addFile(StringRef File) { in addFile() function in __anonbe5e8ed90111::TemporaryFiles 655 TemporaryFiles::getInstance().addFile(*this->FilePath); in TempPCHFile()
|
| H A D | CompilerInstance.cpp | 222 MDC->addFile(Name); in collectHeaderMaps() 235 MDC->addFile(PCHInclude); in collectIncludePCH() 253 MDC->addFile(Dir->path()); in collectIncludePCH() 274 MDC->addFile(E.VPath, E.RPath); in collectVFSEntries()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ModuleDependencyCollector.h | 25 void addFile(llvm::StringRef Filename, 28 m_file_collector->addFile(Filename);
|
| /freebsd-13.1/contrib/llvm-project/lld/ELF/ |
| H A D | ScriptParser.cpp | 68 void addFile(StringRef path); 287 void ScriptParser::addFile(StringRef s) { in addFile() function in ScriptParser 292 driver->addFile(saver.save(path), /*withLOption=*/false); in addFile() 300 driver->addFile(s, /*withLOption=*/false); in addFile() 304 driver->addFile(s.substr(1), /*withLOption=*/false); in addFile() 306 driver->addFile(saver.save(config->sysroot + "/" + s.substr(1)), in addFile() 319 driver->addFile(path, /*withLOption=*/false); in addFile() 325 driver->addFile(s, /*withLOption=*/false); in addFile() 329 driver->addFile(saver.save(*path), /*withLOption=*/true); in addFile() 341 addFile(unquote(next())); in readAsNeeded() [all …]
|
| H A D | Driver.h | 30 void addFile(StringRef path, bool withLOption);
|
| H A D | InputFiles.cpp | 514 driver->addFile(specifier, /*withLOption=*/false); in addDependentLibrary() 516 driver->addFile(*s, /*withLOption=*/true); in addDependentLibrary() 518 driver->addFile(*s, /*withLOption=*/true); in addDependentLibrary()
|
| H A D | Driver.cpp | 207 void LinkerDriver::addFile(StringRef path, bool withLOption) { in addFile() function in LinkerDriver 293 addFile(*path, /*withLOption=*/true); in addLibrary() 1488 addFile(arg->getValue(), /*withLOption=*/false); in createFiles()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/ |
| H A D | Tooling.cpp | 232 InMemoryFileSystem->addFile(FileName, 0, in runToolOnCodeWithArgs() 237 InMemoryFileSystem->addFile( in runToolOnCodeWithArgs() 481 InMemoryFileSystem->addFile( in run() 547 InMemoryFileSystem->addFile( in run() 662 InMemoryFileSystem->addFile(FileName, 0, in buildASTFromCodeWithArgs() 665 InMemoryFileSystem->addFile( in buildASTFromCodeWithArgs()
|
| /freebsd-13.1/contrib/llvm-project/lld/MachO/ |
| H A D | Driver.cpp | 272 static InputFile *addFile(StringRef path, bool forceLoadArchive, in addFile() function 377 addFile(*path, forceLoad, isExplicit))) { in addLibrary() 396 addFile(*path, /*forceLoadArchive=*/false, isExplicit))) { in addFramework() 457 addFile(rerootPath(path), /*forceLoadArchive=*/false); in addFileList() 995 addFile(rerootPath(arg->getValue()), /*forceLoadArchive=*/false); in createFiles() 999 addFile(rerootPath(arg->getValue()), false))) in createFiles() 1003 if (auto *dylibFile = dyn_cast_or_null<DylibFile>(addFile( in createFiles() 1011 addFile(rerootPath(arg->getValue()), /*forceLoadArchive=*/false))) in createFiles() 1018 addFile(rerootPath(arg->getValue()), /*forceLoadArchive=*/true); in createFiles() 1200 addFile(arg->getValue(), /*forceLoadArchive=*/false, /*isExplicit=*/false, in link()
|
| /freebsd-13.1/contrib/llvm-project/lld/lib/Driver/ |
| H A D | DarwinLdDriver.cpp | 158 static void addFile(StringRef path, MachOLinkingContext &ctx, in addFile() function 288 addFile(path, ctx, forceLoad, false); in loadFileList() 1062 addFile(arg->getValue(), ctx, globalWholeArchive, false); in parse() 1065 addFile(arg->getValue(), ctx, false, true); in parse() 1068 addFile(arg->getValue(), ctx, true, false); in parse() 1082 addFile(resolvedPath.getValue(), ctx, globalWholeArchive, upward); in parse() 1096 addFile(resolvedPath.getValue(), ctx, globalWholeArchive, upward); in parse()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Support/ |
| H A D | FileCollector.h | 28 void addFile(const Twine &file);
|
| H A D | VirtualFileSystem.h | 423 bool addFile(const Twine &Path, time_t ModificationTime, 440 bool addFile(const Twine &Path, time_t ModificationTime,
|
| /freebsd-13.1/contrib/llvm-project/lld/COFF/ |
| H A D | Driver.cpp | 216 symtab->addFile(make<ArchiveFile>(mbref)); in addBuffer() 220 symtab->addFile(make<LazyObjFile>(mbref)); in addBuffer() 222 symtab->addFile(make<BitcodeFile>(mbref, "", 0)); in addBuffer() 227 symtab->addFile(make<LazyObjFile>(mbref)); in addBuffer() 229 symtab->addFile(make<ObjFile>(mbref)); in addBuffer() 232 symtab->addFile(make<PDBInputFile>(mbref)); in addBuffer() 239 symtab->addFile(make<DLLFile>(mbref)); in addBuffer() 285 symtab->addFile(imp); in addArchiveBuffer() 300 symtab->addFile(obj); in addArchiveBuffer() 1195 symtab->addFile(f); in convertResources()
|
| H A D | SymbolTable.h | 50 void addFile(InputFile *file);
|
| H A D | InputFiles.cpp | 151 symtab->addFile(file); in fetch() 1223 symtab->addFile(impFile); in makeImport()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/Frontend/ |
| H A D | Utils.h | 166 virtual void addFile(StringRef Filename, StringRef FileDst = {});
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/DumpTool/ |
| H A D | ClangSrcLocDump.cpp | 113 MemFS->addFile(Filename, 0, in main()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCCodeView.h | 143 bool addFile(MCStreamer &OS, unsigned FileNumber, StringRef Filename,
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Utility/ |
| H A D | ReproducerProvider.cpp | 84 m_collector->addFile(dir); in RecordInterestingDirectory()
|
| H A D | Reproducer.cpp | 381 addPaths(files_path, [&](StringRef p) { collector.addFile(p); })) in Finalize()
|
| /freebsd-13.1/contrib/llvm-project/lldb/source/Host/common/ |
| H A D | FileSystem.cpp | 510 m_collector->addFile(file); in Collect()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Tooling/Core/ |
| H A D | Replacement.cpp | 592 InMemoryFileSystem->addFile( in applyAllReplacements()
|