Searched refs:SystemHeaderPrefixes (Results 1 – 7 of 7) sorted by relevance
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Frontend/ |
| H A D | InitHeaderSearch.cpp | 43 std::vector<std::pair<std::string, bool> > SystemHeaderPrefixes; member in __anonfcde45670111::InitHeaderSearch 68 SystemHeaderPrefixes.emplace_back(std::string(Prefix), IsSystemHeader); in AddSystemHeaderPrefix() 597 Headers.SetSystemHeaderPrefixes(SystemHeaderPrefixes); in Realize() 639 for (unsigned i = 0, e = HSOpts.SystemHeaderPrefixes.size(); i != e; ++i) in ApplyHeaderSearchOptions() 640 Init.AddSystemHeaderPrefix(HSOpts.SystemHeaderPrefixes[i].Prefix, in ApplyHeaderSearchOptions() 641 HSOpts.SystemHeaderPrefixes[i].IsSystemHeader); in ApplyHeaderSearchOptions()
|
| H A D | CompilerInvocation.cpp | 2925 for (const auto &P : Opts.SystemHeaderPrefixes) { in GenerateHeaderSearchArgs() 4535 hash_code SHPC = hash_combine_range(hsOpts.SystemHeaderPrefixes.begin(), in getModuleHash() 4536 hsOpts.SystemHeaderPrefixes.end()); in getModuleHash() 4539 code = hash_combine(code, hsOpts.SystemHeaderPrefixes.size(), SHPC, in getModuleHash()
|
| /netbsd-src/external/apache2/llvm/dist/clang/include/clang/Lex/ |
| H A D | HeaderSearchOptions.h | 105 std::vector<SystemHeaderPrefix> SystemHeaderPrefixes; variable 243 SystemHeaderPrefixes.emplace_back(Prefix, IsSystemHeader); in AddSystemHeaderPrefix()
|
| H A D | HeaderSearch.h | 184 std::vector<std::pair<std::string, bool>> SystemHeaderPrefixes; variable 295 SystemHeaderPrefixes.assign(P.begin(), P.end()); in SetSystemHeaderPrefixes()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Lex/ |
| H A D | HeaderSearch.cpp | 957 for (unsigned j = SystemHeaderPrefixes.size(); j; --j) { in LookupFile() 958 if (Filename.startswith(SystemHeaderPrefixes[j-1].first)) { in LookupFile() 959 HFI.DirInfo = SystemHeaderPrefixes[j-1].second ? SrcMgr::C_System in LookupFile()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Serialization/ |
| H A D | ASTWriter.cpp | 1312 Record.push_back(HSOpts.SystemHeaderPrefixes.size()); in WriteControlBlock() 1313 for (unsigned I = 0, N = HSOpts.SystemHeaderPrefixes.size(); I != N; ++I) { in WriteControlBlock() 1314 AddString(HSOpts.SystemHeaderPrefixes[I].Prefix, Record); in WriteControlBlock() 1315 Record.push_back(HSOpts.SystemHeaderPrefixes[I].IsSystemHeader); in WriteControlBlock()
|
| H A D | ASTReader.cpp | 5850 HSOpts.SystemHeaderPrefixes.emplace_back(std::move(Prefix), IsSystemHeader); in ParseHeaderSearchOptions()
|