Home
last modified time | relevance | path

Searched refs:FSOpts (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DCompilerInvocation.h103 std::shared_ptr<FileSystemOptions> FSOpts; variable
140 const FileSystemOptions &getFileSystemOpts() const { return *FSOpts; } in getFileSystemOpts()
258 FileSystemOptions &getFileSystemOpts() { return *FSOpts; } in getFileSystemOpts()
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h163 virtual bool ReadFileSystemOptions(const FileSystemOptions &FSOpts, in ReadFileSystemOptions() argument
289 bool ReadFileSystemOptions(const FileSystemOptions &FSOpts,
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp135 FSOpts(std::make_shared<FileSystemOptions>()), in CompilerInvocationBase()
152 FSOpts = make_shared_copy(X.getFileSystemOpts()); in deep_copy_assign()
172 FSOpts = X.FSOpts; in shallow_copy_assign()
235 return ensureOwned(FSOpts); in getMutFileSystemOpts()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp194 ChainedASTReaderListener::ReadFileSystemOptions(const FileSystemOptions &FSOpts, in ReadFileSystemOptions() argument
196 return First->ReadFileSystemOptions(FSOpts, Complain) || in ReadFileSystemOptions()
197 Second->ReadFileSystemOptions(FSOpts, Complain); in ReadFileSystemOptions()
6443 FileSystemOptions FSOpts; in ParseFileSystemOptions() local
6445 FSOpts.WorkingDir = ReadString(Record, Idx); in ParseFileSystemOptions()
6446 return Listener.ReadFileSystemOptions(FSOpts, Complain); in ParseFileSystemOptions()
H A DASTWriter.cpp1669 const FileSystemOptions &FSOpts = FileMgr.getFileSystemOpts(); in WriteControlBlock() local
1670 AddString(FSOpts.WorkingDir, Record); in WriteControlBlock()