Home
last modified time | relevance | path

Searched refs:colon_pos (Results 1 – 4 of 4) sorted by relevance

/external/chromium/chrome/browser/debugger/
Ddevtools_remote_listen_socket.cc168 std::string::size_type colon_pos = protocol_field_.find_first_of(":"); in DispatchField() local
169 if (colon_pos == std::string::npos) { in DispatchField()
172 const std::string header_name = protocol_field_.substr(0, colon_pos); in DispatchField()
173 std::string header_val = protocol_field_.substr(colon_pos + 1); in DispatchField()
/external/chromium/chrome/common/net/
Dx509_certificate_model_nss.cc115 size_t colon_pos = name.find(':'); in GetNickname() local
116 if (colon_pos != string::npos) in GetNickname()
117 name = name.substr(colon_pos + 1); in GetNickname()
/external/protobuf/src/google/protobuf/compiler/
Dcommand_line_interface.cc1027 string::size_type colon_pos = value.find_first_of(':'); in InterpretArgument() local
1028 if (colon_pos == string::npos || IsWindowsAbsolutePath(value)) { in InterpretArgument()
1031 directive.parameter = value.substr(0, colon_pos); in InterpretArgument()
1032 directive.output_location = value.substr(colon_pos + 1); in InterpretArgument()
/external/oprofile/libpp/
Dformat_output.cpp78 string::size_type colon_pos = info.find(":"); in extract_linenr_info() local
80 if (colon_pos == string::npos) in extract_linenr_info()
83 file = info.substr(0, colon_pos); in extract_linenr_info()
84 istringstream is_info(info.substr(colon_pos+1)); in extract_linenr_info()