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

  /external/chromium/base/
sys_info_chromeos.cc 50 size_t start_index = lsb_release.find_first_of('=', version_key_index); local
51 start_index++; // Move past '='.
52 size_t length = lsb_release.find_first_of('\n', start_index) - start_index;
53 std::string version = lsb_release.substr(start_index, length);
  /external/chromium/net/base/
load_log_util.cc 106 int start_index = FindStartOfBlockIndex(entry); local
107 if (start_index != -1) {
109 entry.block_index = start_index;
110 entries_[start_index].block_index = i;
114 current_indentation = entries_[start_index].indentation;
152 std::string GetBlockDtString(size_t start_index) {
153 int end_index = entries_[start_index].block_index;
159 entries_[start_index].log_entry->time).InMilliseconds();