Home
last modified time | relevance | path

Searched refs:UserEntries (Results 1 – 11 of 11) sorted by relevance

/freebsd-14.2/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearchOptions.h105 std::vector<Entry> UserEntries; variable
285 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot); in AddPath()
/freebsd-14.2/contrib/llvm-project/clang/lib/Lex/
H A DInitHeaderSearch.cpp550 for (unsigned i = 0, e = HSOpts.UserEntries.size(); i != e; ++i) { in ApplyHeaderSearchOptions()
551 const HeaderSearchOptions::Entry &E = HSOpts.UserEntries[i]; in ApplyHeaderSearchOptions()
H A DHeaderSearch.cpp131 std::vector<bool> UserEntryUsage(HSOpts->UserEntries.size()); in computeUserEntryUsage()
743 << HSOpts->UserEntries[UserEntryIdxIt->second].Path; in noteLookupUsage()
/freebsd-14.2/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp36 std::vector<HeaderSearchOptions::Entry> Entries = Opts.UserEntries; in optimizeHeaderSearchOpts()
37 Opts.UserEntries.clear(); in optimizeHeaderSearchOpts()
52 Opts.UserEntries.push_back(Entries[Idx]); in optimizeHeaderSearchOpts()
/freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp125 for (const auto &Entry : CI.getHeaderSearchOpts().UserEntries) { in getRelativeIncludeName()
/freebsd-14.2/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp556 llvm::SaveAndRestore X(this->HSOpts.UserEntries); in ReadHeaderSearchOptions()
572 this->HSOpts.UserEntries = HSOpts.UserEntries; in ReadHeaderSearchPaths()
H A DFrontendActions.cpp678 for (const auto &Entry : HSOpts.UserEntries) in ReadHeaderSearchPaths()
H A DCompilerInvocation.cpp3053 auto It = Opts.UserEntries.begin(); in GenerateHeaderSearchArgs()
3054 auto End = Opts.UserEntries.end(); in GenerateHeaderSearchArgs()
4765 HBuilder.addRange(hsOpts.UserEntries); in getModuleHash()
/freebsd-14.2/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp463 for (const auto &Entry : HSOpts.UserEntries) in initTargetOptions()
/freebsd-14.2/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1240 Record.push_back(HSOpts.UserEntries.size()); in writeUnhashedControlBlock()
1241 for (unsigned I = 0, N = HSOpts.UserEntries.size(); I != N; ++I) { in writeUnhashedControlBlock()
1242 const HeaderSearchOptions::Entry &Entry = HSOpts.UserEntries[I]; in writeUnhashedControlBlock()
H A DASTReader.cpp6145 HSOpts.UserEntries.emplace_back(std::move(Path), Group, IsFramework, in ParseHeaderSearchPaths()