Searched refs:colon_index (Results 1 - 4 of 4) sorted by relevance

/external/v8/test/benchmarks/
H A Dtestcfg.py55 colon_index = line.find(':')
56 if colon_index >= 0:
57 if not IsNumber(line[colon_index+1:].strip()):
/external/chromium/chrome/browser/sync/notifier/
H A Dsync_notifier_factory.cc27 std::string::size_type colon_index = host_port_str.find(':'); local
28 if (colon_index == std::string::npos) {
32 std::string host = host_port_str.substr(0, colon_index);
33 std::string port_str = host_port_str.substr(colon_index + 1);
/external/chromium/net/base/
H A Dsdch_manager.cc394 size_t colon_index = dictionary_text.find(':', line_start); local
395 if (std::string::npos == colon_index) {
400 if (colon_index > line_end)
404 colon_index + 1);
408 std::string name(dictionary_text, line_start, colon_index - line_start);
/external/chromium/chrome/browser/safe_browsing/
H A Dsafe_browsing_blocking_page.cc442 size_t colon_index = command.find(':'); local
443 if (colon_index != std::string::npos) {
444 DCHECK(colon_index < command.size() - 1);
445 bool result = base::StringToInt(command.begin() + colon_index + 1,
448 command = command.substr(0, colon_index);

Completed in 107 milliseconds