Searched refs:Filename (Results 226 - 250 of 268) sorted by relevance

1234567891011

/freebsd-11-stable/contrib/llvm-project/clang/lib/Lex/
H A DModuleMap.cpp181 auto GetFile = [&](StringRef Filename) -> const FileEntry * {
182 auto File = SourceMgr.getFileManager().getFile(Filename);
471 StringRef Filename,
514 << Filename;
521 << RequestingModule->getTopLevelModule()->Name << Filename; local
532 << RequestingModule->getTopLevelModule()->Name << Filename; local
468 diagnoseHeaderInclusion(Module *RequestingModule, bool RequestingModuleIsModuleInterface, SourceLocation FilenameLoc, StringRef Filename, const FileEntry *File) argument
/freebsd-11-stable/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/
H A DExprEngine.cpp3131 std::string Filename = DumpGraph(trim); local
3132 llvm::DisplayGraph(Filename, false, llvm::GraphProgram::DOT);
3140 std::string Filename = DumpGraph(Nodes); local
3141 llvm::DisplayGraph(Filename, false, llvm::GraphProgram::DOT);
3146 std::string ExprEngine::DumpGraph(bool trim, StringRef Filename) { argument
3161 return DumpGraph(Src, Filename);
3164 /*Title=*/"Exploded Graph", /*Filename=*/Filename);
3172 StringRef Filename) {
3182 /*Filename
3171 DumpGraph(ArrayRef<const ExplodedNode*> Nodes, StringRef Filename) argument
[all...]
/freebsd-11-stable/contrib/llvm-project/clang/lib/Driver/
H A DJob.cpp261 StringRef ShortName = llvm::sys::path::filename(CrashInfo->Filename);
H A DDriver.cpp1398 llvm::SmallString<128> Script(CrashInfo.Filename);
4430 SmallString<128> Filename = ArgValue;
4434 Filename = BaseName;
4435 } else if (llvm::sys::path::is_separator(Filename.back())) {
4437 llvm::sys::path::append(Filename, BaseName);
4450 llvm::sys::path::replace_extension(Filename, Extension);
4453 return Args.MakeArgString(Filename.c_str());
/freebsd-11-stable/contrib/llvm-project/clang/lib/Tooling/
H A DCompilationDatabase.cpp391 Result[0].Filename = FilePath;
H A DTooling.cpp530 CommandLine = ArgsAdjuster(CommandLine, CompileCommand.Filename);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/IR/
H A DDebugInfoMetadata.cpp501 DIFile *DIFile::getImpl(LLVMContext &Context, MDString *Filename, argument
506 assert(isCanonical(Filename) && "Expected canonical MDString");
510 DEFINE_GETIMPL_LOOKUP(DIFile, (Filename, Directory, CS, Source));
511 Metadata *Ops[] = {Filename, Directory, CS ? CS->Value : nullptr,
H A DDIBuilder.cpp214 DIFile *DIBuilder::createFile(StringRef Filename, StringRef Directory, argument
217 return DIFile::get(VMContext, Filename, Directory, CS, Source);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DSampleProfile.cpp313 Filename(Name), RemappingFilename(RemapName),
416 std::string Filename; member in class:__anon2603::SampleProfileLoader
1809 SampleProfileReader::create(Filename, Ctx, RemappingFilename);
1812 Ctx.diagnose(DiagnosticInfoSampleProfile(Filename, Msg));
/freebsd-11-stable/sys/contrib/dev/acpica/include/
H A Daclocal.h1046 char *CvFilename; /* Filename associated with this node. Used for ASL/ASL+ converter */\
1113 char *Filename; member in struct:acpi_file_node
1157 char *Filename; member in struct:acpi_parse_obj_asl
/freebsd-11-stable/contrib/llvm-project/clang/lib/Frontend/
H A DPrecompiledPreamble.cpp371 for (auto &Filename : PreambleDepCollector->getDependencies()) {
372 auto FileOrErr = Clang->getFileManager().getFile(Filename);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DCodeViewDebug.cpp179 StringRef Dir = File->getDirectory(), Filename = File->getFilename();
183 if (Dir.startswith("/") || Filename.startswith("/")) {
184 if (llvm::sys::path::is_absolute(Filename, llvm::sys::path::Style::posix))
185 return Filename;
189 Filepath += Filename;
197 if (Filename.find(':') == 1)
198 Filepath = Filename;
200 Filepath = (Dir + "\\" + Filename).str();
H A DAsmPrinter.cpp1393 Optional<SmallString<128>> Filename; local
1395 Filename = *FilenameRef;
1396 sys::fs::make_absolute(*Filename);
1397 assert(!Filename->empty() && "The filename can't be empty.");
1403 Filename ? RemarkSerializer.metaSerializer(OS, StringRef(*Filename))
/freebsd-11-stable/contrib/llvm-project/llvm/lib/MC/
H A DMCObjectStreamer.cpp741 void MCObjectStreamer::EmitFileDirective(StringRef Filename) { argument
742 getAssembler().addFileName(Filename);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objcopy/ELF/
H A DELFObjcopy.cpp284 static Error dumpSectionToFile(StringRef SecName, StringRef Filename, argument
293 FileOutputBuffer::create(Filename, Sec.OriginalData.size());
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-size/
H A Dllvm-size.cpp513 static bool checkMachOAndArchFlags(ObjectFile *O, StringRef Filename) { argument
532 error("no architecture specified", Filename);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-objdump/
H A Dllvm-objdump.cpp2065 static void printArchiveChild(StringRef Filename, const Archive::Child &C) {
2085 outs() << format("%d/%d %6" PRId64 " ", unwrapOrError(C.getUID(), Filename),
2086 unwrapOrError(C.getGID(), Filename),
2087 unwrapOrError(C.getRawSize(), Filename));
2106 Name = unwrapOrError(C.getRawName(), Filename);
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm/IR/
H A DDebugInfoMetadata.h499 static DIFile *getImpl(LLVMContext &Context, StringRef Filename, argument
507 return getImpl(Context, getCanonicalMDString(Context, Filename),
512 static DIFile *getImpl(LLVMContext &Context, MDString *Filename,
524 DEFINE_MDNODE_GET(DIFile, (StringRef Filename, StringRef Directory,
527 (Filename, Directory, CS, Source))
528 DEFINE_MDNODE_GET(DIFile, (MDString * Filename, MDString *Directory,
531 (Filename, Directory, CS, Source))
H A DDIBuilder.h151 /// \param Filename File name.
157 createFile(StringRef Filename, StringRef Directory,
/freebsd-11-stable/contrib/llvm-project/llvm/include/llvm-c/
H A DDebugInfo.h265 * \param Filename File name.
266 * \param FilenameLen The length of the C string passed to \c Filename.
271 LLVMDIBuilderCreateFile(LLVMDIBuilderRef Builder, const char *Filename,
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DPath.cpp1113 void directory_entry::replace_filename(const Twine &Filename, file_type Type,
1116 path::append(PathStr, Filename);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ProfileData/
H A DInstrProf.cpp1170 auto getProfileSum = [IsCS](const std::string &Filename,
1172 auto ReaderOrErr = InstrProfReader::create(Filename);
/freebsd-11-stable/contrib/llvm-project/llvm/lib/Object/
H A DWindowsResource.cpp367 Error WindowsResourceParser::parse(ResourceSectionRef &RSR, StringRef Filename, argument
371 InputFilenames.push_back(Filename);
/freebsd-11-stable/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DMinimalSymbolDumper.cpp728 StringRef Filename = "<unknown>"; local
732 Filename = *MaybeFile;
/freebsd-11-stable/contrib/llvm-project/clang/lib/CodeGen/
H A DCoverageMappingGen.cpp1281 std::string normalizeFilename(StringRef Filename) { argument
1282 llvm::SmallString<256> Path(Filename);

Completed in 684 milliseconds

1234567891011