Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearchOptions.h101 std::vector<Entry> UserEntries; variable
309 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot); in AddPath()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DInitHeaderSearch.cpp456 for (unsigned i = 0, e = HSOpts.UserEntries.size(); i != e; ++i) { in ApplyHeaderSearchOptions()
457 const HeaderSearchOptions::Entry &E = HSOpts.UserEntries[i]; in ApplyHeaderSearchOptions()
H A DHeaderSearch.cpp131 std::vector<bool> UserEntryUsage(HSOpts.UserEntries.size()); in computeUserEntryUsage()
772 << HSOpts.UserEntries[UserEntryIdxIt->second].Path; in noteLookupUsage()
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DModuleDepCollector.cpp61 std::swap(Opts.UserEntries, Entries); in optimizeHeaderSearchOpts()
80 Opts.UserEntries.push_back(std::move(Entries[Idx])); in optimizeHeaderSearchOpts()
258 for (const auto &Entry : HSOpts.UserEntries) { in areOptionsInStableDir()
509 for (auto &Entry : HeaderSearchOpts.UserEntries) in isSafeToIgnoreCWD()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp124 for (const auto &Entry : CI.getHeaderSearchOpts().UserEntries) { in getRelativeIncludeName()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DASTUnit.cpp565 llvm::SaveAndRestore X(this->HSOpts.UserEntries); in ReadHeaderSearchOptions()
581 this->HSOpts.UserEntries = HSOpts.UserEntries; in ReadHeaderSearchPaths()
H A DFrontendActions.cpp734 for (const auto &Entry : HSOpts.UserEntries) in ReadHeaderSearchPaths()
H A DCompilerInvocation.cpp3341 auto It = Opts.UserEntries.begin(); in GenerateHeaderSearchArgs()
3342 auto End = Opts.UserEntries.end(); in GenerateHeaderSearchArgs()
5321 HBuilder.addRange(hsOpts.UserEntries); in getModuleHash()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp516 for (const auto &Entry : HSOpts.UserEntries) in initTargetOptions()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1383 Record.push_back(HSOpts.UserEntries.size()); in writeUnhashedControlBlock()
1384 for (unsigned I = 0, N = HSOpts.UserEntries.size(); I != N; ++I) { in writeUnhashedControlBlock()
1385 const HeaderSearchOptions::Entry &Entry = HSOpts.UserEntries[I]; in writeUnhashedControlBlock()
H A DASTReader.cpp6486 HSOpts.UserEntries.emplace_back(std::move(Path), Group, IsFramework, in ParseHeaderSearchPaths()