Lines Matching defs:Part
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
141 static PathPartKind ClassifyPathPart(string_view_t Part) {
142 if (Part.empty())
144 if (Part == PATHSTR("."))
146 if (Part == PATHSTR(".."))
148 if (Part == PATHSTR("/"))
151 if (Part == PATHSTR("\\"))
183 auto Part = *PP;
184 PathPartKind Kind = ClassifyPathPart(Part);
189 AddPart(Kind, Part);