Searched refs:extId (Results 1 – 1 of 1) sorted by relevance
112 string_path_wrapper string_path_wrapper::operator/(std::string_view extId) const in operator /()115 out.str.reserve(str.size() + 1 + extId.size() * 3); in operator /()117 return out /= extId; in operator /()120 string_path_wrapper& string_path_wrapper::operator/=(std::string_view extId) in operator /=() argument122 str.reserve(str.size() + 1 + extId.size() * 3); in operator /=()127 if (extId.empty() || in operator /=()128 (!pathShouldEscape(extId[0]) && in operator /=()129 std::none_of(extId.begin() + 1, extId.end(), pathRequiresEscape))) in operator /=()131 str.append(extId); in operator /=()134 pathAppendEscape(str, extId[0]); in operator /=()[all …]