Searched refs:SystemHeaderPrefixes (Results 1 – 9 of 9) sorted by relevance
| /freebsd-14.2/contrib/llvm-project/clang/lib/Lex/ |
| H A D | InitHeaderSearch.cpp | 51 std::vector<std::pair<std::string, bool> > SystemHeaderPrefixes; member in __anon35a979bb0111::InitHeaderSearch 77 SystemHeaderPrefixes.emplace_back(std::string(Prefix), IsSystemHeader); in AddSystemHeaderPrefix() 519 Headers.SetSystemHeaderPrefixes(SystemHeaderPrefixes); in Realize() 561 for (unsigned i = 0, e = HSOpts.SystemHeaderPrefixes.size(); i != e; ++i) in ApplyHeaderSearchOptions() 562 Init.AddSystemHeaderPrefix(HSOpts.SystemHeaderPrefixes[i].Prefix, in ApplyHeaderSearchOptions() 563 HSOpts.SystemHeaderPrefixes[i].IsSystemHeader); in ApplyHeaderSearchOptions()
|
| H A D | HeaderSearch.cpp | 1087 for (unsigned j = SystemHeaderPrefixes.size(); j; --j) { in LookupFile() 1088 if (Filename.starts_with(SystemHeaderPrefixes[j - 1].first)) { in LookupFile() 1089 HFI.DirInfo = SystemHeaderPrefixes[j-1].second ? SrcMgr::C_System in LookupFile()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | HeaderSearchOptions.h | 108 std::vector<SystemHeaderPrefix> SystemHeaderPrefixes; variable 292 SystemHeaderPrefixes.emplace_back(Prefix, IsSystemHeader); in AddSystemHeaderPrefix()
|
| H A D | HeaderSearch.h | 272 std::vector<std::pair<std::string, bool>> SystemHeaderPrefixes; variable 387 SystemHeaderPrefixes.assign(P.begin(), P.end()); in SetSystemHeaderPrefixes()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/ |
| H A D | ASTUnit.cpp | 557 llvm::SaveAndRestore Y(this->HSOpts.SystemHeaderPrefixes); in ReadHeaderSearchOptions() 573 this->HSOpts.SystemHeaderPrefixes = HSOpts.SystemHeaderPrefixes; in ReadHeaderSearchPaths()
|
| H A D | FrontendActions.cpp | 681 for (const auto &Prefix : HSOpts.SystemHeaderPrefixes) in ReadHeaderSearchPaths()
|
| H A D | CompilerInvocation.cpp | 3131 for (const auto &P : Opts.SystemHeaderPrefixes) { in GenerateHeaderSearchArgs() 4764 HBuilder.addRange(hsOpts.SystemHeaderPrefixes); in getModuleHash()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 1250 Record.push_back(HSOpts.SystemHeaderPrefixes.size()); in writeUnhashedControlBlock() 1251 for (unsigned I = 0, N = HSOpts.SystemHeaderPrefixes.size(); I != N; ++I) { in writeUnhashedControlBlock() 1252 AddString(HSOpts.SystemHeaderPrefixes[I].Prefix, Record); in writeUnhashedControlBlock() 1253 Record.push_back(HSOpts.SystemHeaderPrefixes[I].IsSystemHeader); in writeUnhashedControlBlock()
|
| H A D | ASTReader.cpp | 6153 HSOpts.SystemHeaderPrefixes.emplace_back(std::move(Prefix), IsSystemHeader); in ParseHeaderSearchPaths()
|