Home
last modified time | relevance | path

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

/src/contrib/llvm-project/lldb/source/Utility/
H A DUriParser.cpp39 auto path_pos = uri.find('/', host_pos); in Parse() local
40 if (path_pos != std::string::npos) in Parse()
41 ret.path = uri.substr(path_pos); in Parse()
47 ((path_pos != std::string::npos) ? path_pos : uri.size()) - host_pos); in Parse()