Lines Matching refs:Group

37   IncludeDirGroup Group;  member
41 DirectoryLookupInfo(IncludeDirGroup Group, DirectoryLookup Lookup, in DirectoryLookupInfo()
43 : Group(Group), Lookup(Lookup), UserEntryIdx(UserEntryIdx) {} in DirectoryLookupInfo()
65 bool AddPath(const Twine &Path, IncludeDirGroup Group, bool isFramework,
71 bool AddUnmappedPath(const Twine &Path, IncludeDirGroup Group,
117 bool InitHeaderSearch::AddPath(const Twine &Path, IncludeDirGroup Group, in AddPath() argument
126 return AddUnmappedPath(IncludeSysroot + Path, Group, isFramework, in AddPath()
131 return AddUnmappedPath(Path, Group, isFramework, UserEntryIdx); in AddPath()
134 bool InitHeaderSearch::AddUnmappedPath(const Twine &Path, IncludeDirGroup Group, in AddUnmappedPath() argument
152 if (Group == Quoted || Group == Angled || Group == IndexHeaderMap) { in AddUnmappedPath()
154 } else if (Group == ExternCSystem) { in AddUnmappedPath()
162 IncludePath.emplace_back(Group, DirectoryLookup(*DE, Type, isFramework), in AddUnmappedPath()
174 Group, DirectoryLookup(HM, Type, Group == IndexHeaderMap), in AddUnmappedPath()
483 if (Include.Group == Quoted) in Realize()
491 if (Include.Group == Angled || Include.Group == IndexHeaderMap) in Realize()
498 if (Include.Group == System || Include.Group == ExternCSystem || in Realize()
499 (!Lang.ObjC && !Lang.CPlusPlus && Include.Group == CSystem) || in Realize()
501 Include.Group == CXXSystem) || in Realize()
502 (Lang.ObjC && !Lang.CPlusPlus && Include.Group == ObjCSystem) || in Realize()
503 (Lang.ObjC && Lang.CPlusPlus && Include.Group == ObjCXXSystem)) in Realize()
507 if (Include.Group == After) in Realize()
553 Init.AddUnmappedPath(E.Path, E.Group, E.IsFramework, i); in ApplyHeaderSearchOptions()
555 Init.AddPath(E.Path, E.Group, E.IsFramework, i); in ApplyHeaderSearchOptions()