Searched refs:IsFramework (Results 1 - 11 of 11) sorted by relevance

/external/clang/include/clang/Lex/
H A DHeaderSearchOptions.h50 unsigned IsFramework : 1; member in struct:clang::HeaderSearchOptions::Entry
59 : Path(path), Group(group), IsFramework(isFramework),
175 bool IsFramework, bool IgnoreSysRoot) {
176 UserEntries.push_back(Entry(Path, Group, IsFramework, IgnoreSysRoot));
174 AddPath(StringRef Path, frontend::IncludeDirGroup Group, bool IsFramework, bool IgnoreSysRoot) argument
H A DHeaderSearch.h517 bool IsFramework);
648 /// \param IsFramework Whether this is a framework directory.
653 bool IsFramework);
659 /// \param IsFramework Whether this is a framework directory.
664 bool IsSystem, bool IsFramework);
H A DModuleMap.h312 /// \param IsFramework Whether this is a framework module.
320 bool IsFramework,
/external/clang/include/clang/Basic/
H A DModule.h139 unsigned IsFramework : 1;
238 LinkLibrary() : IsFramework(false) { }
239 LinkLibrary(const std::string &Library, bool IsFramework) argument
240 : Library(Library), IsFramework(IsFramework) { }
249 bool IsFramework; member in struct:clang::Module::LinkLibrary
289 const FileEntry *ModuleMap, bool IsFramework, bool IsExplicit);
325 if (Mod->IsFramework)
334 return IsFramework && Parent && Parent->isPartOfFramework();
/external/clang/lib/Basic/
H A DModule.cpp28 const FileEntry *File, bool IsFramework, bool IsExplicit)
31 IsAvailable(true), IsFromModuleFile(false), IsFramework(IsFramework),
290 if (IsFramework)
410 if (LinkLibraries[I].IsFramework)
27 Module(StringRef Name, SourceLocation DefinitionLoc, Module *Parent, const FileEntry *File, bool IsFramework, bool IsExplicit) argument
/external/clang/lib/Lex/
H A DHeaderSearch.cpp180 /*IsFramework*/false) == LMM_NewlyLoaded) {
194 /*IsFramework*/false) == LMM_NewlyLoaded){
1111 switch (loadModuleMapFile(Dir, IsSystem, /*IsFramework*/false)) {
1200 HeaderSearch::lookupModuleMapFile(const DirectoryEntry *Dir, bool IsFramework) { argument
1204 if (IsFramework)
1223 switch (loadModuleMapFile(Dir, IsSystem, /*IsFramework*/true)) {
1243 bool IsFramework) {
1245 return loadModuleMapFile(Dir, IsSystem, IsFramework);
1252 bool IsFramework) {
1257 if (const FileEntry *ModuleMapFile = lookupModuleMapFile(Dir, IsFramework)) {
1242 loadModuleMapFile(StringRef DirName, bool IsSystem, bool IsFramework) argument
1251 loadModuleMapFile(const DirectoryEntry *Dir, bool IsSystem, bool IsFramework) argument
[all...]
H A DModuleMap.cpp309 diag::kind DiagID = RequestingModule->getTopLevelModule()->IsFramework ?
381 /*IsFramework=*/false, Explicit).first;
398 /*IsFramework=*/false, Explicit).first;
539 const FileEntry *ModuleMap, bool IsFramework,
547 IsFramework, IsExplicit);
590 assert(Mod->IsFramework && "Can only infer linking for framework modules");
599 /*IsFramework=*/true));
685 /*IsFramework=*/true, /*IsExplicit=*/false);
1492 if (ActiveModule->IsFramework && !ActiveModule->isSubFramework() &&
1608 if (Mod->IsFramework)
538 findOrCreateModule(StringRef Name, Module *Parent, const FileEntry *ModuleMap, bool IsFramework, bool IsExplicit) argument
1863 bool IsFramework = false; local
[all...]
/external/clang/lib/Frontend/
H A DInitHeaderSearch.cpp692 Init.AddUnmappedPath(E.Path, E.Group, E.IsFramework);
694 Init.AddPath(E.Path, E.Group, E.IsFramework);
/external/clang/lib/Serialization/
H A DASTWriter.cpp1186 Record.push_back(Entry.IsFramework);
2273 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsFramework
2322 Abbrev->Add(BitCodeAbbrevOp(BitCodeAbbrevOp::Fixed, 1)); // IsFramework
2361 Record.push_back(Mod->IsFramework);
2459 Record.push_back(Mod->LinkLibraries[I].IsFramework);
H A DASTReader.cpp4241 bool IsFramework = Record[Idx++]; local
4263 IsFramework,
4636 bool IsFramework = Record[Idx++]; local
4639 HeaderSearchOptions::Entry(Path, Group, IsFramework, IgnoreSysRoot));
/external/clang/lib/CodeGen/
H A DCodeGenModule.cpp957 if (Mod->LinkLibraries[I-1].IsFramework) {

Completed in 254 milliseconds