Home
last modified time | relevance | path

Searched refs:separator_index (Results 1 – 2 of 2) sorted by relevance

/external/chromium_org/remoting/jingle_glue/
Dnetwork_settings.cc19 size_t separator_index = port_range.find('-'); in ParsePortRange() local
20 if (separator_index == std::string::npos) in ParsePortRange()
24 base::TrimWhitespaceASCII(port_range.substr(0, separator_index), in ParsePortRange()
27 base::TrimWhitespaceASCII(port_range.substr(separator_index + 1), in ParsePortRange()
/external/chromium_org/rlz/lib/
Drlz_lib.cc538 int separator_index = -1; in ParsePingResponse() local
539 if ((separator_index = response_line.find(": ")) < 0) in ParsePingResponse()
544 response_line.substr(3, separator_index - rlz_cgi_length); in ParsePingResponse()
551 std::string rlz_value(response_line.substr(separator_index + 2)); in ParsePingResponse()