HomeSort by relevance Sort by last modified time
    Searched refs:colon_index (Results 1 - 4 of 4) sorted by null

  /external/v8/test/benchmarks/
testcfg.py 55 colon_index = line.find(':')
56 if colon_index >= 0:
57 if not IsNumber(line[colon_index+1:].strip()):
  /external/chromium/chrome/browser/sync/notifier/
sync_notifier_factory.cc 27 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/
sdch_manager.cc 394 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/
safe_browsing_blocking_page.cc 442 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 109 milliseconds