reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Utility/UriParser.cpp
   43   if (!host_port.empty() && host_port[0] == '[') {
   43   if (!host_port.empty() && host_port[0] == '[') {
   45     pos = host_port.find(']');
   49     tmp_hostname = host_port.substr(1, pos - 1);
   50     host_port = host_port.drop_front(pos + 1);
   50     host_port = host_port.drop_front(pos + 1);
   51     if (!host_port.empty() && !host_port.consume_front(":"))
   51     if (!host_port.empty() && !host_port.consume_front(":"))
   54     std::tie(tmp_hostname, host_port) = host_port.split(':');
   54     std::tie(tmp_hostname, host_port) = host_port.split(':');
   58   if (!host_port.empty()) {
   60     if (host_port.getAsInteger(0, port_value))