Home
last modified time | relevance | path

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

/external/oss-fuzz/projects/tensorflow/
Dbuild.sh74 colon_index=$(expr index "${bazel_target}" ":")
75 fuzz_name="${bazel_target:$colon_index}"
/external/tensorflow/tensorflow/core/distributed_runtime/rpc/
Dgrpc_server_lib.cc145 auto colon_index = iter->second.find_last_of(':'); in GetHostAndPort() local
146 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() local
383 if (!strings::safe_strto32(host_port.substr(colon_index + 1), in WorkerCacheFactory()
Dgrpc_channel.cc54 auto colon_index = host_port.find_last_of(':'); in ValidateHostPortPair() local
55 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()
/external/python/cpython3/Objects/
Dexceptions.c3061 Py_ssize_t colon_index; in _report_missing_parentheses() local
3062 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()
/external/rust/crates/url/src/
Dlib.rs1808 Some(colon_index) => { in set_host()
1809 host_substr = &host[..colon_index]; in set_host()