HomeSort by relevance Sort by last modified time
    Searched defs:colon_pos (Results 1 - 13 of 13) sorted by null

  /external/chromium/chrome/browser/debugger/
devtools_remote_listen_socket.cc 168 std::string::size_type colon_pos = protocol_field_.find_first_of(":"); local
169 if (colon_pos == std::string::npos) {
172 const std::string header_name = protocol_field_.substr(0, colon_pos);
173 std::string header_val = protocol_field_.substr(colon_pos + 1);
  /external/chromium_org/chromeos/network/
network_cert_migrator.cc 38 size_t colon_pos = name.find(':'); local
39 if (colon_pos != std::string::npos)
40 name = name.substr(colon_pos + 1);
  /external/chromium_org/ash/system/date/
date_view.cc 205 size_t colon_pos = current_time.find(ASCIIToUTF16(":")); local
206 base::string16 hour = current_time.substr(0, colon_pos);
207 base::string16 minute = current_time.substr(colon_pos + 1);
  /external/chromium_org/base/test/
test_launcher.cc 147 size_t colon_pos = flag.find(':'); local
149 if (colon_pos != std::string::npos) {
153 path = FilePath(path_string.substr(colon_pos + 1));
  /external/chromium_org/chrome/browser/extensions/
extension_apitest.cc 111 size_t colon_pos = header.find(':'); local
112 if (colon_pos == std::string::npos)
115 std::string header_name = header.substr(0, colon_pos);
117 std::string header_value = header.substr(colon_pos + 2);
  /external/chromium_org/chrome/browser/history/
scored_history_match.cc 278 const size_t colon_pos = url.find(':'); local
286 const size_t end_of_hostname_pos = (colon_pos != std::string::npos) ?
287 url.find('/', colon_pos + 3) : url.find('/');
311 } else if ((colon_pos == std::string::npos) ||
312 (iter->offset > colon_pos)) {
  /external/chromium/chrome/common/net/
x509_certificate_model_nss.cc 115 size_t colon_pos = name.find(':'); local
116 if (colon_pos != string::npos)
117 name = name.substr(colon_pos + 1);
  /external/chromium_org/chrome/common/net/
x509_certificate_model_nss.cc 116 size_t colon_pos = name.find(':'); local
117 if (colon_pos != string::npos)
118 name = name.substr(colon_pos + 1);
  /external/chromium_org/chrome/test/perf/rendering/
throughput_tests.cc 153 CommandLine::StringType::size_type colon_pos = flags.find_last_of(':'); local
154 CommandLine::StringType::size_type num_pos = colon_pos + 1;
158 base::FilePath filepath(flags.substr(0, colon_pos));
  /external/oprofile/libpp/
format_output.cpp 78 string::size_type colon_pos = info.find(":"); local
80 if (colon_pos == string::npos)
83 file = info.substr(0, colon_pos);
84 istringstream is_info(info.substr(colon_pos+1));
  /external/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 1027 string::size_type colon_pos = value.find_first_of(':'); local
    [all...]
  /external/chromium_org/third_party/libjingle/source/talk/p2p/base/
port.cc 467 size_t colon_pos = username_attr_str.find(":"); local
468 if (colon_pos != std::string::npos) { // RFRAG:LFRAG
469 *local_ufrag = username_attr_str.substr(0, colon_pos);
471 colon_pos + 1, username_attr_str.size());
    [all...]
  /external/chromium_org/third_party/protobuf/src/google/protobuf/compiler/
command_line_interface.cc 1101 string::size_type colon_pos = value.find_first_of(':'); local
    [all...]

Completed in 496 milliseconds