Home
last modified time | relevance | path

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

/freebsd/contrib/llvm-project/clang/include/clang/Lex/
H A DHeaderSearchOptions.h70 unsigned IsFramework : 1;
80 : Path(path), Group(group), IsFramework(isFramework), in Entry()
308 bool IsFramework, bool IgnoreSysRoot) { in AddPath() argument
309 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot); in AddPath()
331 HBuilder.add(E.Path, E.Group, E.IsFramework, E.IgnoreSysRoot); in addHash()
H A DModuleMap.h535 bool IsFramework,
540 bool IsFramework, bool IsExplicit) { in findOrCreateModuleFirst() argument
541 return findOrCreateModule(Name, Parent, IsFramework, IsExplicit).first; in findOrCreateModuleFirst()
546 Module *createModule(StringRef Name, Module *Parent, bool IsFramework,
597 Module *createShadowedModule(StringRef Name, bool IsFramework,
H A DHeaderSearch.h677 bool IsFramework);
964 bool IsFramework);
975 bool IsSystem, bool IsFramework);
978 bool IsFramework);
980 bool IsFramework);
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DModule.h380 unsigned IsFramework : 1;
505 LinkLibrary(const std::string &Library, bool IsFramework) in LinkLibrary()
506 : Library(Library), IsFramework(IsFramework) {} in LinkLibrary()
515 bool IsFramework = false; member
557 Module *Parent, bool IsFramework, bool IsExplicit,
627 if (Mod->IsFramework) in isPartOfFramework()
636 return IsFramework && Parent && Parent->isPartOfFramework(); in isSubFramework()
/freebsd/contrib/llvm-project/clang/lib/Basic/
H A DModule.cpp37 SourceLocation DefinitionLoc, Module *Parent, bool IsFramework, in Module() argument
42 IsFromModuleFile(false), IsFramework(IsFramework), IsExplicit(IsExplicit), in Module()
162 if (!LangOpts.isCompilingModule() && getTopLevelModule()->IsFramework && in isForBuilding()
465 if (IsFramework) in print()
567 if (!Submodule->IsInferred || Submodule->IsFramework) in print()
616 if (LinkLibraries[I].IsFramework) in print()
/freebsd/contrib/llvm-project/clang/lib/Lex/
H A DHeaderSearch.cpp1835 HeaderSearch::lookupModuleMapFile(DirectoryEntryRef Dir, bool IsFramework) { in lookupModuleMapFile() argument
1841 if (IsFramework) in lookupModuleMapFile()
1852 << ModuleMapFileName << 0 << IsFramework; in lookupModuleMapFile()
1858 if (IsFramework) { in lookupModuleMapFile()
1891 bool IsFramework) { in parseAndLoadModuleMapFile() argument
1893 return parseAndLoadModuleMapFile(*Dir, IsSystem, IsFramework); in parseAndLoadModuleMapFile()
1900 bool IsFramework) { in parseAndLoadModuleMapFile() argument
1916 MMState.ModuleMapFile = lookupModuleMapFile(Dir, IsFramework); in parseAndLoadModuleMapFile()
1935 bool IsFramework) { in parseModuleMapFile() argument
1937 return parseModuleMapFile(*Dir, IsSystem, IsFramework); in parseModuleMapFile()
[all …]
H A DModuleMap.cpp161 if (Mod->IsFramework) in appendSubframeworkPaths()
206 if (M->IsFramework && M->Name == "Private") in findHeader()
558 diag::kind DiagID = RequestingModule->getTopLevelModule()->IsFramework ? in diagnoseHeaderInclusion()
855 bool IsFramework, in findOrCreateModule() argument
862 Module *M = createModule(Name, Parent, IsFramework, IsExplicit); in findOrCreateModule()
867 bool IsFramework, bool IsExplicit) { in createModule() argument
873 IsFramework, IsExplicit, NumCreatedModules++); in createModule()
994 assert(Mod->IsFramework && "Can only infer linking for framework modules"); in inferFrameworkLink()
1185 Module *ModuleMap::createShadowedModule(StringRef Name, bool IsFramework, in createShadowedModule() argument
1191 IsFramework, /*IsExplicit=*/false, NumCreatedModules++); in createShadowedModule()
[all …]
H A DInitHeaderSearch.cpp459 Init.AddUnmappedPath(E.Path, E.Group, E.IsFramework, i); in ApplyHeaderSearchOptions()
461 Init.AddPath(E.Path, E.Group, E.IsFramework, i); in ApplyHeaderSearchOptions()
/freebsd/contrib/llvm-project/clang/lib/InstallAPI/
H A DFrontend.cpp185 const bool IsFramework = sys::path::parent_path(InstallName) in findLibrary() local
187 if (IsFramework) { in findLibrary()
/freebsd/contrib/llvm-project/clang/lib/APINotes/
H A DAPINotesManager.cpp243 if (M->IsFramework) { in getCurrentModuleAPINotes()
/freebsd/contrib/llvm-project/clang/lib/ExtractAPI/
H A DExtractAPIConsumer.cpp147 if (Entry.IsFramework) { in getRelativeIncludeName()
/freebsd/contrib/llvm-project/clang/lib/Frontend/
H A DCompilerInvocation.cpp3334 std::optional<bool> IsFramework, in GenerateHeaderSearchArgs()
3337 (!IsFramework || (Entry.IsFramework == *IsFramework)) && in GenerateHeaderSearchArgs()
3476 bool IsFramework = false) -> std::string { in ParseHeaderSearchArgs() argument
3478 if (IsSysrootSpecified && !IsFramework && A->getValue()[0] == '=') { in ParseHeaderSearchArgs()
3488 bool IsFramework = A->getOption().matches(OPT_F); in ParseHeaderSearchArgs() local
3489 Opts.AddPath(PrefixHeaderPath(A, IsFramework), frontend::Angled, in ParseHeaderSearchArgs()
3490 IsFramework, /*IgnoreSysroot=*/true); in ParseHeaderSearchArgs()
/freebsd/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangASTImporter.cpp1284 return to_ts.GetOrCreateClangModule(module->Name, parent, module->IsFramework, in RemapModule()
/freebsd/contrib/llvm-project/clang/tools/clang-scan-deps/
H A DClangScanDeps.cpp380 JOS.attribute("isFramework", LL.IsFramework); in toJSONSorted()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DBackendUtil.cpp517 if (!Entry.IsFramework && in initTargetOptions()
H A DCodeGenModule.cpp3279 if (LL.IsFramework) { in addLinkOptionsPostorder()
/freebsd/contrib/llvm-project/clang/lib/Serialization/
H A DASTWriter.cpp1388 Record.push_back(Entry.IsFramework); in writeUnhashedControlBlock()
3105 Mod->IsFramework, in WriteSubmodules()
3203 LL.IsFramework}; in WriteSubmodules()
H A DASTReader.cpp6102 bool IsFramework = Record[Idx++]; in ReadSubmoduleBlock() local
6118 IsFramework, IsExplicit); in ReadSubmoduleBlock()
6484 bool IsFramework = Record[Idx++]; in ParseHeaderSearchPaths() local
6486 HSOpts.UserEntries.emplace_back(std::move(Path), Group, IsFramework, in ParseHeaderSearchPaths()