Home
last modified time | relevance | path

Searched refs:PPBase (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/libcxx/src/filesystem/
H A Dpath.cpp252 auto PPBase = PathParser::CreateBegin(base.__pn_); in lexically_relative() local
254 return PP.State_ != PPBase.State_ && (PP.inRootPath() || PPBase.inRootPath()); in lexically_relative()
256 if (PP.inRootName() && PPBase.inRootName()) { in lexically_relative()
257 if (*PP != *PPBase) in lexically_relative()
264 if (PPBase.inRootPath()) in lexically_relative()
265 ++PPBase; in lexically_relative()
272 auto PPBase = PathParser::CreateBegin(base.__pn_); in lexically_relative() local
273 while (PP && PPBase && PP.State_ == PPBase.State_ && (*PP == *PPBase || PP.inRootDir())) { in lexically_relative()
275 ++PPBase; in lexically_relative()
279 if (!PP && !PPBase) in lexically_relative()
[all …]