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.h73 unsigned IsFramework : 1;
83 : Path(path), Group(group), IsFramework(isFramework), in Entry()
292 bool IsFramework, bool IgnoreSysRoot) { in AddPath() argument
293 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot); in AddPath()
315 HBuilder.add(E.Path, E.Group, E.IsFramework, E.IgnoreSysRoot); in addHash()
H A DHeaderSearch.h680 bool IsFramework);
961 bool IsFramework);
972 bool IsFramework);
H A DModuleMap.h542 bool IsFramework,
593 Module *createShadowedModule(StringRef Name, bool IsFramework,
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DModule.h324 unsigned IsFramework : 1;
449 LinkLibrary(const std::string &Library, bool IsFramework) in LinkLibrary()
450 : Library(Library), IsFramework(IsFramework) {} in LinkLibrary()
459 bool IsFramework = false; member
501 bool IsFramework, bool IsExplicit, unsigned VisibilityID);
570 if (Mod->IsFramework) in isPartOfFramework()
579 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()
484 if (IsFramework) in print()
586 if (!Submodule->IsInferred || Submodule->IsFramework) in print()
635 if (LinkLibraries[I].IsFramework) in print()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp1860 HeaderSearch::lookupModuleMapFile(DirectoryEntryRef Dir, bool IsFramework) { in lookupModuleMapFile() argument
1866 if (IsFramework) in lookupModuleMapFile()
1877 << ModuleMapFileName << 0 << IsFramework; in lookupModuleMapFile()
1883 if (IsFramework) { in lookupModuleMapFile()
1916 bool IsFramework) { in loadModuleMapFile() argument
1918 return loadModuleMapFile(*Dir, IsSystem, IsFramework); in loadModuleMapFile()
1925 bool IsFramework) { in loadModuleMapFile() argument
1931 lookupModuleMapFile(Dir, IsFramework)) { in loadModuleMapFile()
2028 bool IsFramework = llvm::sys::path::extension(Dir->path()) == ".framework"; in loadSubdirectoryModuleMaps() local
2029 if (IsFramework == SearchDir.isFramework()) in loadSubdirectoryModuleMaps()
H A DModuleMap.cpp168 if (Mod->IsFramework) in appendSubframeworkPaths()
213 if (M->IsFramework && M->Name == "Private") in findHeader()
570 diag::kind DiagID = RequestingModule->getTopLevelModule()->IsFramework ? in diagnoseHeaderInclusion()
853 bool IsFramework, in findOrCreateModule() argument
860 Module *Result = new Module(Name, SourceLocation(), Parent, IsFramework, in findOrCreateModule()
982 assert(Mod->IsFramework && "Can only infer linking for framework modules"); in inferFrameworkLink()
1171 Module *ModuleMap::createShadowedModule(StringRef Name, bool IsFramework, in createShadowedModule() argument
1176 new Module(Name, SourceLocation(), /*Parent=*/nullptr, IsFramework, in createShadowedModule()
1892 if (FrameworkLoc.isValid() || ActiveModule->Parent->IsFramework) in diagnosePrivateModules()
2234 if (ActiveModule->IsFramework && !ActiveModule->isSubFramework() && in parseModuleDecl()
[all …]
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DFrontend.cpp186 const bool IsFramework = sys::path::parent_path(InstallName) in findLibrary() local
188 if (IsFramework) { in findLibrary()
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesManager.cpp244 if (M->IsFramework) { in getCurrentModuleAPINotes()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp3155 std::optional<bool> IsFramework, in GenerateHeaderSearchArgs()
3158 (!IsFramework || (Entry.IsFramework == *IsFramework)) && in GenerateHeaderSearchArgs()
3303 bool IsFramework = false) -> std::string { in ParseHeaderSearchArgs() argument
3305 if (IsSysrootSpecified && !IsFramework && A->getValue()[0] == '=') { in ParseHeaderSearchArgs()
3324 bool IsFramework = A->getOption().matches(OPT_F); in ParseHeaderSearchArgs() local
3325 Opts.AddPath(PrefixHeaderPath(A, IsFramework), Group, IsFramework, in ParseHeaderSearchArgs()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp148 if (Entry.IsFramework) { in getRelativeIncludeName()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp1259 return to_ts.GetOrCreateClangModule(module->Name, parent, module->IsFramework, in RemapModule()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp479 if (!Entry.IsFramework && in initTargetOptions()
H A DCodeGenModule.cpp3050 if (LL.IsFramework) { in addLinkOptionsPostorder()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1346 Record.push_back(Entry.IsFramework); in writeUnhashedControlBlock()
3021 Mod->IsFramework, in WriteSubmodules()
3119 LL.IsFramework}; in WriteSubmodules()
H A DASTReader.cpp5777 bool IsFramework = Record[Idx++]; in ReadSubmoduleBlock() local
5795 ModMap.findOrCreateModule(Name, ParentModule, IsFramework, IsExplicit) in ReadSubmoduleBlock()
6149 bool IsFramework = Record[Idx++]; in ParseHeaderSearchPaths() local
6151 HSOpts.UserEntries.emplace_back(std::move(Path), Group, IsFramework, in ParseHeaderSearchPaths()