/external/clang/include/clang/Lex/ |
HeaderSearchOptions.h | 51 unsigned IsFramework : 1; 58 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework, 60 : Path(path), Group(group), IsFramework(isFramework), 188 bool IsFramework, bool IgnoreSysRoot) { 189 UserEntries.emplace_back(Path, Group, IsFramework, IgnoreSysRoot);
|
HeaderSearch.h | 504 bool IsFramework); 667 /// \param IsFramework Whether this is a framework directory. 672 bool IsFramework); 678 /// \param IsFramework Whether this is a framework directory. 683 bool IsSystem, bool IsFramework);
|
ModuleMap.h | 376 /// \param IsFramework Whether this is a framework module. 383 bool IsFramework,
|
/external/clang/include/clang/Basic/ |
Module.h | 168 unsigned IsFramework : 1; 261 LinkLibrary() : IsFramework(false) { } 262 LinkLibrary(const std::string &Library, bool IsFramework) 263 : Library(Library), IsFramework(IsFramework) { } 272 bool IsFramework; 310 bool IsFramework, bool IsExplicit, unsigned VisibilityID); 346 if (Mod->IsFramework) 355 return IsFramework && Parent && Parent->isPartOfFramework();
|
/external/clang/lib/Basic/ |
Module.cpp | 28 bool IsFramework, bool IsExplicit, unsigned VisibilityID) 32 IsAvailable(true), IsFromModuleFile(false), IsFramework(IsFramework), 323 if (IsFramework) 401 if (!(*MI)->IsInferred || (*MI)->IsFramework) 447 if (LinkLibraries[I].IsFramework)
|
/external/clang/lib/Lex/ |
HeaderSearch.cpp | 175 if (SearchDirs[Idx].isFramework()) { 199 /*IsFramework*/false) == LMM_NewlyLoaded) { 213 /*IsFramework*/false) == LMM_NewlyLoaded){ 247 if (isFramework()) 306 if (isFramework()) [all...] |
ModuleMap.cpp | 307 diag::kind DiagID = RequestingModule->getTopLevelModule()->IsFramework ? 387 Result = findOrCreateModule(Name, Result, /*IsFramework=*/false, 405 Result = findOrCreateModule(Name, Result, /*IsFramework=*/false, 550 ModuleMap::findOrCreateModule(StringRef Name, Module *Parent, bool IsFramework, 558 IsFramework, IsExplicit, NumCreatedModules++); 577 assert(Mod->IsFramework && "Can only infer linking for framework modules"); 593 /*IsFramework=*/true)); 692 /*IsFramework=*/true, /*IsExplicit=*/false, [all...] |
/external/clang/lib/Frontend/ |
InitHeaderSearch.cpp | 58 void AddPath(const Twine &Path, IncludeDirGroup Group, bool isFramework); 63 bool isFramework); 116 bool isFramework) { 123 AddUnmappedPath(IncludeSysroot + Path, Group, isFramework); 128 AddUnmappedPath(Path, Group, isFramework); 132 bool isFramework) { 152 std::make_pair(Group, DirectoryLookup(DE, Type, isFramework))); 158 if (!isFramework) { 510 } else if (CurEntry.isFramework()) { 543 else if (CurEntry.isFramework()) [all...] |
/external/clang/lib/Serialization/ |
ASTWriter.cpp | [all...] |
ASTReader.cpp | [all...] |
/external/clang/lib/CodeGen/ |
CodeGenModule.cpp | [all...] |