Home
last modified time | relevance | path

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

/src/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearchOptions.h104 std::vector<Entry> UserEntries; variable
293 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot); in AddPath()
/src/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.cpp133 std::vector<bool> UserEntryUsage(HSOpts->UserEntries.size()); in computeUserEntryUsage()
767 << HSOpts->UserEntries[UserEntryIdxIt->second].Path; in noteLookupUsage()
/src/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp40 std::swap(Opts.UserEntries, Entries); in optimizeHeaderSearchOpts()
59 Opts.UserEntries.push_back(std::move(Entries[Idx])); in optimizeHeaderSearchOpts()
/src/contrib/llvm-project/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp125 for (const auto &Entry : CI.getHeaderSearchOpts().UserEntries) { in getRelativeIncludeName()
/src/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp567 llvm::SaveAndRestore X(this->HSOpts.UserEntries); in ReadHeaderSearchOptions()
583 this->HSOpts.UserEntries = HSOpts.UserEntries; in ReadHeaderSearchPaths()
H A DFrontendActions.cpp708 for (const auto &Entry : HSOpts.UserEntries) in ReadHeaderSearchPaths()
H A DCompilerInvocation.cpp3162 auto It = Opts.UserEntries.begin(); in GenerateHeaderSearchArgs()
3163 auto End = Opts.UserEntries.end(); in GenerateHeaderSearchArgs()
4974 HBuilder.addRange(hsOpts.UserEntries); in getModuleHash()
/src/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp478 for (const auto &Entry : HSOpts.UserEntries) in initTargetOptions()
/src/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1341 Record.push_back(HSOpts.UserEntries.size()); in writeUnhashedControlBlock()
1342 for (unsigned I = 0, N = HSOpts.UserEntries.size(); I != N; ++I) { in writeUnhashedControlBlock()
1343 const HeaderSearchOptions::Entry &Entry = HSOpts.UserEntries[I]; in writeUnhashedControlBlock()
H A DASTReader.cpp6151 HSOpts.UserEntries.emplace_back(std::move(Path), Group, IsFramework, in ParseHeaderSearchPaths()