Lines Matching refs:Group
34 IncludeDirGroup Group; member
38 DirectoryLookupInfo(IncludeDirGroup Group, DirectoryLookup Lookup, in DirectoryLookupInfo()
40 : Group(Group), Lookup(Lookup), UserEntryIdx(UserEntryIdx) {} in DirectoryLookupInfo()
62 bool AddPath(const Twine &Path, IncludeDirGroup Group, bool isFramework,
68 bool AddUnmappedPath(const Twine &Path, IncludeDirGroup Group,
104 bool InitHeaderSearch::AddPath(const Twine &Path, IncludeDirGroup Group, in AddPath() argument
113 return AddUnmappedPath(IncludeSysroot + Path, Group, isFramework, in AddPath()
118 return AddUnmappedPath(Path, Group, isFramework, UserEntryIdx); in AddPath()
121 bool InitHeaderSearch::AddUnmappedPath(const Twine &Path, IncludeDirGroup Group, in AddUnmappedPath() argument
139 if (Group == Quoted || Group == Angled) { in AddUnmappedPath()
141 } else if (Group == ExternCSystem) { in AddUnmappedPath()
149 IncludePath.emplace_back(Group, DirectoryLookup(*DE, Type, isFramework), in AddUnmappedPath()
160 IncludePath.emplace_back(Group, DirectoryLookup(HM, Type), in AddUnmappedPath()
389 if (Include.Group == Quoted) in Realize()
397 if (Include.Group == Angled) in Realize()
404 if (Include.Group == System || Include.Group == ExternCSystem || in Realize()
405 (!Lang.ObjC && !Lang.CPlusPlus && Include.Group == CSystem) || in Realize()
407 Include.Group == CXXSystem) || in Realize()
408 (Lang.ObjC && !Lang.CPlusPlus && Include.Group == ObjCSystem) || in Realize()
409 (Lang.ObjC && Lang.CPlusPlus && Include.Group == ObjCXXSystem)) in Realize()
413 if (Include.Group == After) in Realize()
459 Init.AddUnmappedPath(E.Path, E.Group, E.IsFramework, i); in ApplyHeaderSearchOptions()
461 Init.AddPath(E.Path, E.Group, E.IsFramework, i); in ApplyHeaderSearchOptions()