Searched refs:BaseDir (Results 1 - 5 of 5) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/include/llvm/Support/
H A DTarWriter.h21 StringRef BaseDir);
26 TarWriter(int FD, StringRef BaseDir);
28 std::string BaseDir; member in class:llvm::TarWriter
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Testing/Support/
H A DSupportHelpers.cpp17 SmallString<128> BaseDir = llvm::sys::path::parent_path(Argv0); local
19 llvm::sys::fs::make_absolute(BaseDir);
21 SmallString<128> PathInSameDir = BaseDir;
27 SmallString<128> PathInParentDir = llvm::sys::path::parent_path(BaseDir);
/freebsd-13-stable/contrib/llvm-project/llvm/lib/Support/
H A DTarWriter.cpp170 StringRef BaseDir) {
176 return std::unique_ptr<TarWriter>(new TarWriter(FD, BaseDir));
179 TarWriter::TarWriter(int FD, StringRef BaseDir) argument
181 BaseDir(std::string(BaseDir)) {}
186 std::string Fullpath = BaseDir + "/" + sys::path::convert_to_slash(Path);
169 create(StringRef OutputPath, StringRef BaseDir) argument
/freebsd-13-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp302 if (const char *BaseDir = getenv("JITDUMPDIR"))
303 Path.append(BaseDir);
/freebsd-13-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp989 /// \param BaseDir When non-NULL, the PCH file is a relocatable AST file and
995 adjustFilenameForRelocatableAST(const char *Filename, StringRef BaseDir) { argument
998 if (BaseDir.empty())
1003 for (; Filename[Pos] && Pos < BaseDir.size(); ++Pos)
1004 if (Filename[Pos] != BaseDir[Pos])
1014 if (!llvm::sys::path::is_separator(BaseDir.back()))
1154 SmallString<128> BaseDir(WritingModule->Directory->getName());
1155 cleanPathForOutput(Context.getSourceManager().getFileManager(), BaseDir);
1171 Stream.EmitRecordWithBlob(AbbrevCode, Record, BaseDir);
1175 BaseDirectory.assign(BaseDir
[all...]

Completed in 120 milliseconds