Searched defs:isFramework (Results 1 - 4 of 4) sorted by relevance
/external/clang/include/clang/Lex/ |
H A D | DirectoryLookup.h | 69 bool isFramework) 71 LookupType(isFramework ? LT_Framework : LT_NormalDir), 102 return isFramework() ? u.Dir : nullptr; 114 /// isFramework - True if this is a framework directory. 116 bool isFramework() const { return getLookupType() == LT_Framework; } function in class:clang::DirectoryLookup 68 DirectoryLookup(const DirectoryEntry *dir, SrcMgr::CharacteristicKind DT, bool isFramework) argument
|
H A D | HeaderSearchOptions.h | 58 Entry(StringRef path, frontend::IncludeDirGroup group, bool isFramework, argument 60 : Path(path), Group(group), IsFramework(isFramework),
|
/external/clang/lib/Frontend/ |
H A D | 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()) 115 AddPath(const Twine &Path, IncludeDirGroup Group, bool isFramework) argument 131 AddUnmappedPath(const Twine &Path, IncludeDirGroup Group, bool isFramework) argument [all...] |
/external/llvm/lib/Object/ |
H A D | MachOObjectFile.cpp | 768 // isFramework is set to true else it is set to false. If the Name has a 788 bool &isFramework, 793 isFramework = false; 819 isFramework = true; 841 isFramework = true; 924 bool isFramework; local 925 StringRef shortName = guessLibraryShortName(Name, isFramework, Suffix); 787 guessLibraryShortName(StringRef Name, bool &isFramework, StringRef &Suffix) argument
|
Completed in 164 milliseconds