Home
last modified time | relevance | path

Searched refs:IgnoreSysRoot (Results 1 – 6 of 6) sorted by relevance

/freebsd-13.1/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearchOptions.h77 unsigned IgnoreSysRoot : 1; member
82 IgnoreSysRoot(ignoreSysRoot) {} in Entry()
235 bool IsFramework, bool IgnoreSysRoot) { in AddPath() argument
236 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot); in AddPath()
256 return llvm::hash_combine(E.Path, E.Group, E.IsFramework, E.IgnoreSysRoot); in hash_value()
/freebsd-13.1/contrib/llvm-project/clang/lib/Frontend/
H A DInitHeaderSearch.cpp634 if (E.IgnoreSysRoot) { in ApplyHeaderSearchOptions()
H A DCompilerInvocation.cpp2839 llvm::Optional<bool> IgnoreSysRoot) { in GenerateHeaderSearchArgs() argument
2842 (!IgnoreSysRoot || (Entry.IgnoreSysRoot == *IgnoreSysRoot)); in GenerateHeaderSearchArgs()
2889 GenerateArg(Args, It->IgnoreSysRoot ? OPT_isystem : OPT_iwithsysroot, in GenerateHeaderSearchArgs()
/freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp603 Entry.IgnoreSysRoot ? Entry.Path : HSOpts.Sysroot + Entry.Path); in initTargetOptions()
/freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp5857 bool IgnoreSysRoot = Record[Idx++]; in ParseHeaderSearchOptions() local
5859 IgnoreSysRoot); in ParseHeaderSearchOptions()
H A DASTWriter.cpp1308 Record.push_back(Entry.IgnoreSysRoot); in WriteControlBlock()