Home
last modified time | relevance | path

Searched refs:HeaderSearchOptions (Results 1 – 25 of 27) sorted by relevance

12

/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearchOptions.h64 class HeaderSearchOptions {
286 HeaderSearchOptions(StringRef _Sysroot = "/")
330 const HeaderSearchOptions::Entry &E) { in addHash()
336 const HeaderSearchOptions::SystemHeaderPrefix &SHP) { in addHash()
H A DHeaderSearch.h50 class HeaderSearchOptions; variable
244 const HeaderSearchOptions &HSOpts;
376 HeaderSearch(const HeaderSearchOptions &HSOpts, SourceManager &SourceMgr,
384 const HeaderSearchOptions &getHeaderSearchOpts() const { return HSOpts; } in getHeaderSearchOpts()
985 const HeaderSearchOptions &HSOpts,
/freebsd/contrib/llvm-project/clang/include/clang/Frontend/
H A DCompilerInvocation.h50 class HeaderSearchOptions; variable
86 std::shared_ptr<HeaderSearchOptions> HSOpts;
134 const HeaderSearchOptions &getHeaderSearchOpts() const { return *HSOpts; } in getHeaderSearchOpts()
252 HeaderSearchOptions &getHeaderSearchOpts() { return *HSOpts; } in getHeaderSearchOpts()
375 HeaderSearchOptions &getMutHeaderSearchOpts();
H A DASTUnit.h124 std::unique_ptr<HeaderSearchOptions> HSOpts;
481 const HeaderSearchOptions &getHeaderSearchOpts() const { in getHeaderSearchOpts()
712 const HeaderSearchOptions &HSOpts, const LangOptions *LangOpts = nullptr,
H A DCompilerInstance.h310 HeaderSearchOptions &getHeaderSearchOpts() { in getHeaderSearchOpts()
313 const HeaderSearchOptions &getHeaderSearchOpts() const { in getHeaderSearchOpts()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DInitHeaderSearch.cpp79 const HeaderSearchOptions &HSOpts);
88 const HeaderSearchOptions &HSOpts);
174 const HeaderSearchOptions &HSOpts) { in AddDefaultCIncludePaths()
255 const HeaderSearchOptions &HSOpts) { in AddDefaultIncludePaths()
450 const HeaderSearchOptions &HSOpts, in ApplyHeaderSearchOptions()
457 const HeaderSearchOptions::Entry &E = HSOpts.UserEntries[i]; in ApplyHeaderSearchOptions()
H A DHeaderSearch.cpp83 HeaderSearch::HeaderSearch(const HeaderSearchOptions &HSOpts, in HeaderSearch()
/freebsd/contrib/llvm-project/clang/include/clang/CodeGen/
H A DModuleBuilder.h40 class HeaderSearchOptions; variable
111 const HeaderSearchOptions &HeaderSearchOpts,
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DModuleBuilder.cpp37 const HeaderSearchOptions &HeaderSearchOpts; // Only used for debug info.
80 const HeaderSearchOptions &HSO, in CodeGeneratorImpl()
366 const HeaderSearchOptions &HeaderSearchOpts, in CreateLLVMCodeGen()
H A DCodeGenModule.h78 class HeaderSearchOptions; variable
350 const HeaderSearchOptions &HeaderSearchOpts; // Only used for debug info.
688 const HeaderSearchOptions &headersearchopts,
825 const HeaderSearchOptions &getHeaderSearchOpts() in getHeaderSearchOpts()
H A DObjectFilePCHContainerWriter.cpp47 const HeaderSearchOptions &HeaderSearchOpts;
H A DCodeGenModule.cpp402 const HeaderSearchOptions &HSO, in CodeGenModule()
/freebsd/contrib/llvm-project/clang/lib/Tooling/DependencyScanning/
H A DDependencyScanningWorker.cpp66 static bool checkHeaderSearchPaths(const HeaderSearchOptions &HSOpts, in checkHeaderSearchPaths()
67 const HeaderSearchOptions &ExistingHSOpts, in checkHeaderSearchPaths()
90 using PrebuiltModuleFilesT = decltype(HeaderSearchOptions::PrebuiltModuleFiles);
100 const HeaderSearchOptions &HSOpts, in PrebuiltModuleListener()
161 bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts, in ReadHeaderSearchOptions()
178 bool ReadHeaderSearchPaths(const HeaderSearchOptions &HSOpts, in ReadHeaderSearchPaths()
197 const HeaderSearchOptions &ExistingHSOpts;
H A DModuleDepCollector.cpp54 optimizeHeaderSearchOpts(HeaderSearchOptions &Opts, ASTReader &Reader, in optimizeHeaderSearchOpts()
60 std::vector<HeaderSearchOptions::Entry> Entries; in optimizeHeaderSearchOpts()
251 const HeaderSearchOptions &HSOpts) { in areOptionsInStableDir()
/freebsd/contrib/llvm-project/clang/include/clang/Serialization/
H A DASTReader.h89 class HeaderSearchOptions; variable
176 virtual bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts, in ReadHeaderSearchOptions()
192 virtual bool ReadHeaderSearchPaths(const HeaderSearchOptions &HSOpts, in ReadHeaderSearchPaths()
292 bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts,
334 bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts,
H A DASTWriter.h57 class HeaderSearchOptions; variable
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DFrontendActions.cpp711 bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts, in ReadHeaderSearchOptions()
730 bool ReadHeaderSearchPaths(const HeaderSearchOptions &HSOpts, in ReadHeaderSearchPaths()
899 const HeaderSearchOptions &HSOpts = in ExecuteAction()
H A DASTUnit.cpp516 HeaderSearchOptions &HSOpts;
527 HeaderSearchOptions &HSOpts, PreprocessorOptions &PPOpts, in ASTInfoCollector()
558 bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts, in ReadHeaderSearchOptions()
576 bool ReadHeaderSearchPaths(const HeaderSearchOptions &HSOpts, in ReadHeaderSearchPaths()
804 const FileSystemOptions &FileSystemOpts, const HeaderSearchOptions &HSOpts, in LoadFromASTFile()
831 AST->HSOpts = std::make_unique<HeaderSearchOptions>(HSOpts); in LoadFromASTFile()
H A DCompilerInstance.cpp632 const HeaderSearchOptions &HSOpts = in createPCHExternalASTSource()
1168 HeaderSearchOptions &HSOpts = Invocation->getHeaderSearchOpts(); in cloneForModuleCompileImpl()
1646 static void pruneModuleCache(const HeaderSearchOptions &HSOpts) { in pruneModuleCache()
1738 HeaderSearchOptions &HSOpts = getHeaderSearchOpts(); in createASTReader()
1848 const HeaderSearchOptions &HSOpts = HS.getHeaderSearchOpts(); in selectModuleSource()
H A DCompilerInvocation.cpp129 HSOpts(std::make_shared<HeaderSearchOptions>()), in CompilerInvocationBase()
210 HeaderSearchOptions &CowCompilerInvocation::getMutHeaderSearchOpts() { in getMutHeaderSearchOpts()
3309 static void GenerateHeaderSearchArgs(const HeaderSearchOptions &Opts, in GenerateHeaderSearchArgs()
3311 const HeaderSearchOptions *HeaderSearchOpts = &Opts; in GenerateHeaderSearchArgs()
3332 auto Matches = [](const HeaderSearchOptions::Entry &Entry, in GenerateHeaderSearchArgs()
3424 static bool ParseHeaderSearchArgs(HeaderSearchOptions &Opts, ArgList &Args, in ParseHeaderSearchArgs()
3429 HeaderSearchOptions *HeaderSearchOpts = &Opts; in ParseHeaderSearchArgs()
5297 const HeaderSearchOptions &hsOpts = getHeaderSearchOpts(); in getModuleHash()
/freebsd/contrib/llvm-project/clang/include/clang/Tooling/DependencyScanning/
H A DModuleDepCollector.h399 const HeaderSearchOptions &HSOpts);
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h50 class HeaderSearchOptions; variable
1214 std::unique_ptr<clang::HeaderSearchOptions> m_header_search_opts_up;
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangExpressionParser.cpp372 HeaderSearchOptions &search_opts = compiler->getHeaderSearchOpts(); in SetupModuleHeaderPaths()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTReader.cpp201 const HeaderSearchOptions &HSOpts, StringRef ModuleFilename, in ReadHeaderSearchOptions()
886 bool PCHValidator::ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts, in ReadHeaderSearchOptions()
2733 const HeaderSearchOptions &HSOpts = in getInputFile()
3086 const HeaderSearchOptions &HSOpts = in ReadControlBlock()
4945 const HeaderSearchOptions &HSOpts = in ReadAST()
5153 const HeaderSearchOptions &HSOpts = in readUnhashedControlBlock()
5678 bool ReadHeaderSearchOptions(const HeaderSearchOptions &HSOpts, in ReadHeaderSearchOptions()
6453 HeaderSearchOptions HSOpts; in ParseHeaderSearchOptions()
6476 HeaderSearchOptions HSOpts; in ParseHeaderSearchPaths()
H A DASTWriter.cpp1385 const HeaderSearchOptions::Entry &Entry = HSOpts.UserEntries[I]; in writeUnhashedControlBlock()
1675 const HeaderSearchOptions &HSOpts = in WriteControlBlock()

12