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

  /external/chromium/chrome/browser/download/
drag_download_util.cc 29 size_t mime_type_end_pos = metadata.find(separator); local
30 if (mime_type_end_pos == string16::npos)
33 size_t file_name_end_pos = metadata.find(separator, mime_type_end_pos + 1);
42 *mime_type = metadata.substr(0, mime_type_end_pos);
45 mime_type_end_pos + 1, file_name_end_pos - mime_type_end_pos - 1);
  /external/chromium_org/content/browser/download/
drag_download_util.cc 32 size_t mime_type_end_pos = metadata.find(separator); local
33 if (mime_type_end_pos == string16::npos)
36 size_t file_name_end_pos = metadata.find(separator, mime_type_end_pos + 1);
45 *mime_type = metadata.substr(0, mime_type_end_pos);
48 mime_type_end_pos + 1, file_name_end_pos - mime_type_end_pos - 1);

Completed in 67 milliseconds