Lines Matching refs:PATHSTR
36 __pn_ += PATHSTR("."); in replace_extension()
144 if (Part == PATHSTR(".")) in ClassifyPathPart()
146 if (Part == PATHSTR("..")) in ClassifyPathPart()
148 if (Part == PATHSTR("/")) in ClassifyPathPart()
151 if (Part == PATHSTR("\\")) in ClassifyPathPart()
201 AddPart(PK_DotDot, PATHSTR("..")); in lexically_normal()
216 return PATHSTR("."); in lexically_normal()
228 Result /= PATHSTR(""); in lexically_normal()
238 if (Elem == PATHSTR("..")) in DetermineLexicalElementCount()
240 else if (Elem != PATHSTR(".") && Elem != PATHSTR("")) in DetermineLexicalElementCount()
286 if (ElemCount == 0 && (PP.atEnd() || *PP == PATHSTR(""))) in lexically_relative()
287 return PATHSTR("."); in lexically_relative()
294 Result /= PATHSTR(".."); in lexically_relative()
306 … [](PathParser* Parser) -> string_view_t { return Parser->inRootName() ? **Parser : PATHSTR(""); }; in CompareRootName()