Home
last modified time | relevance | path

Searched defs:PurePath (Results 1 – 1 of 1) sorted by relevance

/system/iorap/tests/src/inode2filename/
Dsearch_directories_test.cc404 struct PurePath { struct
409 // Create an empty PurePath. argument
413 constexpr PurePath() : path_(".") { in PurePath() function
423 constexpr PurePath(std::string_view path) : path_(path) { in PurePath() argument
428 constexpr PurePath(const char* path) : PurePath(std::string_view(path)) {} in PurePath() function
436 PurePath(std::string&& path) : owner_(std::move(path)), path_(owner_.value()) { in PurePath() function
452 constexpr PartIterable IterateParts() const { in IterateParts()
479 // This is consistent with PurePath.parts implementation. in VisitParts() argument
493 /*constexpr*/ bool operator==(const PurePath& other) const { in operator ==() argument
514 constexpr std::string_view Name() const { in Name()
[all …]