Home
last modified time | relevance | path

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

/netbsd-src/external/apache2/llvm/dist/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()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/
H A DInitHeaderSearch.cpp630 if (E.IgnoreSysRoot) { in ApplyHeaderSearchOptions()
H A DCompilerInvocation.cpp2842 llvm::Optional<bool> IgnoreSysRoot) { in GenerateHeaderSearchArgs() argument
2845 (!IgnoreSysRoot || (Entry.IgnoreSysRoot == *IgnoreSysRoot)); in GenerateHeaderSearchArgs()
2892 GenerateArg(Args, It->IgnoreSysRoot ? OPT_isystem : OPT_iwithsysroot, in GenerateHeaderSearchArgs()
/netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/
H A DBackendUtil.cpp595 Entry.IgnoreSysRoot ? Entry.Path : HSOpts.Sysroot + Entry.Path); in initTargetOptions()
/netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/
H A DASTReader.cpp5841 bool IgnoreSysRoot = Record[Idx++]; in ParseHeaderSearchOptions() local
5843 IgnoreSysRoot); in ParseHeaderSearchOptions()
H A DASTWriter.cpp1308 Record.push_back(Entry.IgnoreSysRoot); in WriteControlBlock()