Home
last modified time | relevance | path

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

/OK3568_Linux_fs/buildroot/dl/qt5location/git/src/3rdparty/mapbox-gl-native/src/mbgl/util/
H A Durl.cpp71 const auto hashPos = str.find('#'); in URL() local
73 if (queryPos == std::string::npos || hashPos < queryPos) { in URL()
74 return { hashPos != std::string::npos ? hashPos : str.size(), 0 }; in URL()
76 return { queryPos, (hashPos != std::string::npos ? hashPos : str.size()) - queryPos }; in URL()