Searched refs:closebracket (Results 1 – 2 of 2) sorted by relevance
183 std::string::size_type closebracket = str.rfind(']'); in FromString() local184 if (closebracket != std::string::npos) { in FromString()185 std::string::size_type colon = str.find(':', closebracket); in FromString()186 if (colon != std::string::npos && colon > closebracket) { in FromString()188 SetIP(str.substr(1, closebracket - 1)); in FromString()
191 std::string::size_type closebracket = in_str.rfind(']'); in ParseHostnameAndPortFromString() local192 if (closebracket != std::string::npos) { in ParseHostnameAndPortFromString()193 std::string::size_type colonpos = in_str.find(':', closebracket); in ParseHostnameAndPortFromString()195 if (!ParsePort(in_str.substr(closebracket + 2, std::string::npos), in ParseHostnameAndPortFromString()200 *host = in_str.substr(1, closebracket - 1); in ParseHostnameAndPortFromString()