Home
last modified time | relevance | path

Searched refs:FSOpts (Results 1 – 6 of 6) 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.h161 virtual bool ReadFileSystemOptions(const FileSystemOptions &FSOpts, in ReadFileSystemOptions() argument
271 bool ReadFileSystemOptions(const FileSystemOptions &FSOpts,
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp149 FSOpts(std::make_shared<FileSystemOptions>()), in CompilerInvocationBase()
166 FSOpts = make_shared_copy(X.getFileSystemOpts()); in deep_copy_assign()
186 FSOpts = X.FSOpts; in shallow_copy_assign()
258 return ensureOwned(FSOpts); in getMutFileSystemOpts()
/freebsd/contrib/llvm-project/clang/lib/ARCMigrate/
H A DObjCMT.cpp2213 FileSystemOptions FSOpts; in getFileRemappingsFromFileList() local
2214 FileManager FileMgr(FSOpts); in getFileRemappingsFromFileList()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp200 ChainedASTReaderListener::ReadFileSystemOptions(const FileSystemOptions &FSOpts, in ReadFileSystemOptions() argument
202 return First->ReadFileSystemOptions(FSOpts, Complain) || in ReadFileSystemOptions()
203 Second->ReadFileSystemOptions(FSOpts, Complain); in ReadFileSystemOptions()
6109 FileSystemOptions FSOpts; in ParseFileSystemOptions() local
6111 FSOpts.WorkingDir = ReadString(Record, Idx); in ParseFileSystemOptions()
6112 return Listener.ReadFileSystemOptions(FSOpts, Complain); in ParseFileSystemOptions()
H A DASTWriter.cpp1605 const FileSystemOptions &FSOpts = in WriteControlBlock() local
1607 AddString(FSOpts.WorkingDir, Record); in WriteControlBlock()