Home
last modified time | relevance | path

Searched refs:IsFramework (Results 1 – 16 of 16) sorted by relevance

/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearchOptions.h74 unsigned IsFramework : 1;
84 : Path(path), Group(group), IsFramework(isFramework), in Entry()
284 bool IsFramework, bool IgnoreSysRoot) { in AddPath() argument
285 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot); in AddPath()
305 return llvm::hash_combine(E.Path, E.Group, E.IsFramework, E.IgnoreSysRoot); in hash_value()
311 HBuilder.add(E.Path, E.Group, E.IsFramework, E.IgnoreSysRoot); in addHash()
H A DHeaderSearch.h652 bool IsFramework);
932 bool IsFramework);
943 bool IsFramework);
H A DModuleMap.h543 bool IsFramework,
594 Module *createShadowedModule(StringRef Name, bool IsFramework,
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DModule.h323 unsigned IsFramework : 1;
448 LinkLibrary(const std::string &Library, bool IsFramework) in LinkLibrary()
449 : Library(Library), IsFramework(IsFramework) {} in LinkLibrary()
458 bool IsFramework = false; member
500 bool IsFramework, bool IsExplicit, unsigned VisibilityID);
569 if (Mod->IsFramework) in isPartOfFramework()
578 return IsFramework && Parent && Parent->isPartOfFramework(); in isSubFramework()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp38 bool IsFramework, bool IsExplicit, unsigned VisibilityID) in Module() argument
42 IsFromModuleFile(false), IsFramework(IsFramework), IsExplicit(IsExplicit), in Module()
167 if (!LangOpts.isCompilingModule() && getTopLevelModule()->IsFramework && in isForBuilding()
480 if (IsFramework) in print()
582 if (!Submodule->IsInferred || Submodule->IsFramework) in print()
631 if (LinkLibraries[I].IsFramework) in print()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp1755 HeaderSearch::lookupModuleMapFile(DirectoryEntryRef Dir, bool IsFramework) { in lookupModuleMapFile() argument
1761 if (IsFramework) in lookupModuleMapFile()
1772 << ModuleMapFileName << 0 << IsFramework; in lookupModuleMapFile()
1778 if (IsFramework) { in lookupModuleMapFile()
1811 bool IsFramework) { in loadModuleMapFile() argument
1813 return loadModuleMapFile(*Dir, IsSystem, IsFramework); in loadModuleMapFile()
1820 bool IsFramework) { in loadModuleMapFile() argument
1826 lookupModuleMapFile(Dir, IsFramework)) { in loadModuleMapFile()
1923 bool IsFramework = llvm::sys::path::extension(Dir->path()) == ".framework"; in loadSubdirectoryModuleMaps() local
1924 if (IsFramework == SearchDir.isFramework()) in loadSubdirectoryModuleMaps()
H A DModuleMap.cpp168 if (Mod->IsFramework) in appendSubframeworkPaths()
213 if (M->IsFramework && M->Name == "Private") in findHeader()
854 bool IsFramework, in findOrCreateModule() argument
861 Module *Result = new Module(Name, SourceLocation(), Parent, IsFramework, in findOrCreateModule()
1172 Module *ModuleMap::createShadowedModule(StringRef Name, bool IsFramework, in createShadowedModule() argument
1177 new Module(Name, SourceLocation(), /*Parent=*/nullptr, IsFramework, in createShadowedModule()
1888 if (FrameworkLoc.isValid() || ActiveModule->Parent->IsFramework) in diagnosePrivateModules()
2227 if (ActiveModule->IsFramework && !ActiveModule->isSubFramework() && in parseModuleDecl()
2709 bool IsFramework = false; in parseLinkDecl() local
2712 IsFramework = true; in parseLinkDecl()
[all …]
H A DInitHeaderSearch.cpp553 Init.AddUnmappedPath(E.Path, E.Group, E.IsFramework, i); in ApplyHeaderSearchOptions()
555 Init.AddPath(E.Path, E.Group, E.IsFramework, i); in ApplyHeaderSearchOptions()
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesManager.cpp238 if (M->IsFramework) { in getCurrentModuleAPINotes()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp148 if (Entry.IsFramework) { in getRelativeIncludeName()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp3046 std::optional<bool> IsFramework, in GenerateHeaderSearchArgs()
3049 (!IsFramework || (Entry.IsFramework == *IsFramework)) && in GenerateHeaderSearchArgs()
3199 bool IsFramework = A->getOption().matches(OPT_F); in ParseHeaderSearchArgs() local
3202 if (IsSysrootSpecified && !IsFramework && A->getValue()[0] == '=') { in ParseHeaderSearchArgs()
3209 Opts.AddPath(Path, Group, IsFramework, in ParseHeaderSearchArgs()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp1016 return to_ts.GetOrCreateClangModule(module->Name, parent, module->IsFramework, in RemapModule()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp464 if (!Entry.IsFramework && in initTargetOptions()
H A DCodeGenModule.cpp3016 if (LL.IsFramework) { in addLinkOptionsPostorder()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1245 Record.push_back(Entry.IsFramework); in writeUnhashedControlBlock()
2883 Mod->IsFramework, in WriteSubmodules()
2981 LL.IsFramework}; in WriteSubmodules()
H A DASTReader.cpp5771 bool IsFramework = Record[Idx++]; in ReadSubmoduleBlock() local
5789 ModMap.findOrCreateModule(Name, ParentModule, IsFramework, IsExplicit) in ReadSubmoduleBlock()
6143 bool IsFramework = Record[Idx++]; in ParseHeaderSearchPaths() local
6145 HSOpts.UserEntries.emplace_back(std::move(Path), Group, IsFramework, in ParseHeaderSearchPaths()