HomeSort by: relevance | last modified time | path
    Searched refs:IsFramework (Results 1 - 14 of 14) sorted by relevancy

  /src/external/apache2/llvm/dist/clang/include/clang/Lex/
HeaderSearchOptions.h 72 unsigned IsFramework : 1;
79 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework,
81 : Path(path), Group(group), IsFramework(isFramework),
235 bool IsFramework, bool IgnoreSysRoot) {
236 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot);
256 return llvm::hash_combine(E.Path, E.Group, E.IsFramework, E.IgnoreSysRoot);
HeaderSearch.h 564 bool IsFramework);
808 /// \param IsFramework Whether this is a framework directory.
813 bool IsFramework);
819 /// \param IsFramework Whether this is a framework directory.
824 bool IsSystem, bool IsFramework);
ModuleMap.h 527 /// \param IsFramework Whether this is a framework module.
534 bool IsFramework,
568 Module *createShadowedModule(StringRef Name, bool IsFramework,
  /src/external/apache2/llvm/dist/clang/include/clang/Basic/
Module.h 264 unsigned IsFramework : 1;
366 LinkLibrary(const std::string &Library, bool IsFramework)
367 : Library(Library), IsFramework(IsFramework) {}
376 bool IsFramework = false;
418 bool IsFramework, bool IsExplicit, unsigned VisibilityID);
484 if (Mod->IsFramework)
493 return IsFramework && Parent && Parent->isPartOfFramework();
  /src/external/apache2/llvm/dist/clang/lib/Basic/
Module.cpp 38 bool IsFramework, bool IsExplicit, unsigned VisibilityID)
42 IsFromModuleFile(false), IsFramework(IsFramework), IsExplicit(IsExplicit),
435 if (IsFramework)
538 if (!(*MI)->IsInferred || (*MI)->IsFramework)
587 if (LinkLibraries[I].IsFramework)
  /src/external/apache2/llvm/dist/clang/lib/Lex/
ModuleMap.cpp 162 if (Mod->IsFramework)
207 if (M->IsFramework && M->Name == "Private")
541 diag::kind DiagID = RequestingModule->getTopLevelModule()->IsFramework ?
626 Result = findOrCreateModule(Name, Result, /*IsFramework=*/false,
644 Result = findOrCreateModule(Name, Result, /*IsFramework=*/false,
818 bool IsFramework,
825 Module *Result = new Module(Name, SourceLocation(), Parent, IsFramework,
838 new Module("<global>", Loc, nullptr, /*IsFramework*/ false,
848 new Module("<private>", Loc, Parent, /*IsFramework*/ false,
861 new Module(Name, Loc, nullptr, /*IsFramework*/ false
    [all...]
HeaderSearch.cpp 264 if (SearchDirs[Idx].isFramework()) {
289 /*IsFramework*/false) == LMM_NewlyLoaded) {
303 /*IsFramework*/false) == LMM_NewlyLoaded){
339 if (isFramework())
406 if (isFramework())
1595 HeaderSearch::lookupModuleMapFile(const DirectoryEntry *Dir, bool IsFramework) {
1601 if (IsFramework)
1615 if (IsFramework) {
1632 switch (loadModuleMapFile(Dir, IsSystem, /*IsFramework*/true)) {
1652 bool IsFramework) {
    [all...]
PPDirectives.cpp 115 if (M->getTopLevelModule()->IsFramework && CurrentModule == ModuleName &&
  /src/external/apache2/llvm/dist/clang/lib/Frontend/
InitHeaderSearch.cpp 57 bool AddPath(const Twine &Path, IncludeDirGroup Group, bool isFramework);
63 bool isFramework);
116 bool isFramework) {
123 return AddUnmappedPath(IncludeSysroot + Path, Group, isFramework);
127 return AddUnmappedPath(Path, Group, isFramework);
131 bool isFramework) {
158 std::make_pair(Group, DirectoryLookup(*DE, Type, isFramework)));
164 if (!isFramework) {
485 } else if (CurEntry.isFramework()) {
518 else if (CurEntry.isFramework())
    [all...]
CompilerInvocation.cpp 2841 llvm::Optional<bool> IsFramework,
2844 (!IsFramework || (Entry.IsFramework == *IsFramework)) &&
2999 bool IsFramework = A->getOption().matches(OPT_F);
3002 if (IsSysrootSpecified && !IsFramework && A->getValue()[0] == '=') {
3009 Opts.AddPath(Path, Group, IsFramework,
3036 Opts.AddPath(A->getValue(), frontend::System, /*IsFramework=*/true,
  /src/external/apache2/llvm/dist/clang/lib/CodeGen/
BackendUtil.cpp 590 if (!Entry.IsFramework &&
CodeGenModule.cpp 2272 if (Mod->LinkLibraries[I-1].IsFramework) {
  /src/external/apache2/llvm/dist/clang/lib/Serialization/
ASTWriter.cpp 1307 Record.push_back(Entry.IsFramework);
2529 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsFramework
2589 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsFramework
2635 Mod->IsFramework,
2718 LL.IsFramework};
ASTReader.cpp 5509 bool IsFramework = Record[Idx++];
5526 ModMap.findOrCreateModule(Name, ParentModule, IsFramework, IsExplicit)
5840 bool IsFramework = Record[Idx++];
5842 HSOpts.UserEntries.emplace_back(std::move(Path), Group, IsFramework,

Completed in 62 milliseconds