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.cpp249 auto PPBase = PathParser::CreateBegin(base.__pn_); in lexically_relative() local
251 return PP.State_ != PPBase.State_ && (PP.inRootPath() || PPBase.inRootPath()); in lexically_relative()
253 if (PP.inRootName() && PPBase.inRootName()) { in lexically_relative()
254 if (*PP != *PPBase) in lexically_relative()
261 if (PPBase.inRootPath()) in lexically_relative()
262 ++PPBase; in lexically_relative()
269 auto PPBase = PathParser::CreateBegin(base.__pn_); in lexically_relative() local
270 while (PP && PPBase && PP.State_ == PPBase.State_ && *PP == *PPBase) { in lexically_relative()
272 ++PPBase; in lexically_relative()
276 if (!PP && !PPBase) in lexically_relative()
[all …]