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

/freebsd-11-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-11-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-11-stable/contrib/llvm-project/llvm/lib/Support/
H A DTarWriter.cpp160 StringRef BaseDir) {
166 return std::unique_ptr<TarWriter>(new TarWriter(FD, BaseDir));
169 TarWriter::TarWriter(int FD, StringRef BaseDir) argument
170 : OS(FD, /*shouldClose=*/true, /*unbuffered=*/false), BaseDir(BaseDir) {}
175 std::string Fullpath = BaseDir + "/" + sys::path::convert_to_slash(Path);
159 create(StringRef OutputPath, StringRef BaseDir) argument
/freebsd-11-stable/contrib/llvm-project/llvm/lib/ExecutionEngine/PerfJITEvents/
H A DPerfJITEventListener.cpp302 if (const char *BaseDir = getenv("JITDUMPDIR"))
303 Path.append(BaseDir);
/freebsd-11-stable/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp956 /// \param BaseDir When non-NULL, the PCH file is a relocatable AST file and
962 adjustFilenameForRelocatableAST(const char *Filename, StringRef BaseDir) { argument
965 if (BaseDir.empty())
970 for (; Filename[Pos] && Pos < BaseDir.size(); ++Pos)
971 if (Filename[Pos] != BaseDir[Pos])
981 if (!llvm::sys::path::is_separator(BaseDir.back()))
1111 SmallString<128> BaseDir(WritingModule->Directory->getName());
1112 cleanPathForOutput(Context.getSourceManager().getFileManager(), BaseDir);
1128 Stream.EmitRecordWithBlob(AbbrevCode, Record, BaseDir);
1132 BaseDirectory.assign(BaseDir
[all...]

Completed in 276 milliseconds