Searched refs:colon_index (Results 1 – 5 of 5) sorted by relevance
74 colon_index=$(expr index "${bazel_target}" ":")75 fuzz_name="${bazel_target:$colon_index}"
145 auto colon_index = iter->second.find_last_of(':'); in GetHostAndPort() local146 if (!strings::safe_strto32(iter->second.substr(colon_index + 1), in GetHostAndPort()153 if (colon_index != string::npos && in GetHostAndPort()154 !iter->second.substr(0, colon_index).empty()) { in GetHostAndPort()155 *host_name = iter->second.substr(0, colon_index); in GetHostAndPort()382 auto colon_index = host_port.find_last_of(':'); in WorkerCacheFactory() local383 if (!strings::safe_strto32(host_port.substr(colon_index + 1), in WorkerCacheFactory()
54 auto colon_index = host_port.find_last_of(':'); in ValidateHostPortPair() local55 if (!strings::safe_strtou32(host_port.substr(colon_index + 1), &port) || in ValidateHostPortPair()56 host_port.substr(0, colon_index).find('/') != string::npos) { in ValidateHostPortPair()
3061 Py_ssize_t colon_index; in _report_missing_parentheses() local3062 colon_index = PyUnicode_FindChar(self->text, colon, in _report_missing_parentheses()3064 if (colon_index < -1) { in _report_missing_parentheses()3067 if (colon_index >= 0 && colon_index < text_len) { in _report_missing_parentheses()3069 if (_check_for_legacy_statements(self, colon_index+1) < 0) { in _report_missing_parentheses()
1808 Some(colon_index) => { in set_host()1809 host_substr = &host[..colon_index]; in set_host()