Searched refs:PS_InRootName (Results 1 – 2 of 2) sorted by relevance
/freebsd/contrib/llvm-project/libcxx/src/filesystem/ |
H A D | path_parser.h | 44 PS_InRootName = path::iterator::_InRootName, enumerator 91 return makeState(PS_InRootName, Start, TkEnd); in increment() 94 case PS_InRootName: { in increment() 141 return makeState(PS_InRootName, TkStart + 1, RStart + 1); in decrement() 156 return makeState(PS_InRootName, TkStart + 1, RStart + 1); in decrement() 162 return makeState(PS_InRootName, Path.data(), RStart + 1); in decrement() 163 case PS_InRootName: in decrement() 183 case PS_InRootName: 206 bool inRootName() const noexcept { return State_ == PS_InRootName; } in inRootName() 230 case PS_InRootName: in getNextTokenStartPos() [all …]
|
H A D | path.cpp | 48 if (PP.State_ == PathParser::PS_InRootName) in __root_name() 55 if (PP.State_ == PathParser::PS_InRootName) in __root_directory() 64 if (PP.State_ == PathParser::PS_InRootName) { in __root_path_raw() 78 …static_assert(PathParser::PS_BeforeBegin == 1 && PathParser::PS_InRootName == 2, "Values for enums… in ConsumeRootName() 79 while (PP->State_ <= PathParser::PS_InRootName) in ConsumeRootName() 85 …static_assert(PathParser::PS_BeforeBegin == 1 && PathParser::PS_InRootName == 2 && PathParser::PS_… in ConsumeRootDir()
|