Home
last modified time | relevance | path

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

/llvm-project-15.0.7/clang/include/clang/Lex/
H A DHeaderSearchOptions.h103 std::vector<Entry> UserEntries; variable
243 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot); in AddPath()
/llvm-project-15.0.7/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp25 std::vector<HeaderSearchOptions::Entry> Entries = Opts.UserEntries; in optimizeHeaderSearchOpts()
26 Opts.UserEntries.clear(); in optimizeHeaderSearchOpts()
41 Opts.UserEntries.push_back(Entries[Idx]); in optimizeHeaderSearchOpts()
/llvm-project-15.0.7/clang/lib/Lex/
H A DInitHeaderSearch.cpp665 for (unsigned i = 0, e = HSOpts.UserEntries.size(); i != e; ++i) { in ApplyHeaderSearchOptions()
666 const HeaderSearchOptions::Entry &E = HSOpts.UserEntries[i]; in ApplyHeaderSearchOptions()
H A DHeaderSearch.cpp131 std::vector<bool> UserEntryUsage(HSOpts->UserEntries.size()); in computeUserEntryUsage()
719 << HSOpts->UserEntries[UserEntryIdxIt->second].Path; in noteLookupUsage()
/llvm-project-15.0.7/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp129 for (const auto &Entry : CI.getHeaderSearchOpts().UserEntries) { in getRelativeIncludeName()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DBackendUtil.cpp472 for (const auto &Entry : HSOpts.UserEntries) in initTargetOptions()
/llvm-project-15.0.7/clang/lib/Frontend/
H A DCompilerInvocation.cpp2992 auto It = Opts.UserEntries.begin(); in GenerateHeaderSearchArgs()
2993 auto End = Opts.UserEntries.end(); in GenerateHeaderSearchArgs()
4611 HBuilder.addRange(hsOpts.UserEntries); in getModuleHash()
/llvm-project-15.0.7/clang/lib/Serialization/
H A DASTWriter.cpp1393 Record.push_back(HSOpts.UserEntries.size()); in WriteControlBlock()
1394 for (unsigned I = 0, N = HSOpts.UserEntries.size(); I != N; ++I) { in WriteControlBlock()
1395 const HeaderSearchOptions::Entry &Entry = HSOpts.UserEntries[I]; in WriteControlBlock()
H A DASTReader.cpp5896 HSOpts.UserEntries.emplace_back(std::move(Path), Group, IsFramework, in ParseHeaderSearchOptions()