Home | History | Annotate | Download | only in Frontend

Lines Matching refs:Group

55   /// AddPath - Add the specified path to the specified group list, prefixing
57 void AddPath(const Twine &Path, IncludeDirGroup Group, bool isFramework);
59 /// AddUnmappedPath - Add the specified path to the specified group list,
61 void AddUnmappedPath(const Twine &Path, IncludeDirGroup Group,
119 void InitHeaderSearch::AddPath(const Twine &Path, IncludeDirGroup Group,
122 // group.
127 AddUnmappedPath(IncludeSysroot + Path, Group, isFramework);
132 AddUnmappedPath(Path, Group, isFramework);
135 void InitHeaderSearch::AddUnmappedPath(const Twine &Path, IncludeDirGroup Group,
145 if (Group == Quoted || Group == Angled || Group == IndexHeaderMap) {
147 } else if (Group == ExternCSystem) {
156 std::make_pair(Group, DirectoryLookup(DE, Type, isFramework)));
167 std::make_pair(Group,
168 DirectoryLookup(HM, Type, Group == IndexHeaderMap)));
674 Init.AddUnmappedPath(E.Path, E.Group, E.IsFramework);
676 Init.AddPath(E.Path, E.Group, E.IsFramework);