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

  /external/chromium_org/chrome/renderer/plugins/
plugin_uma.cc 121 size_t last_dot = extension_file_path.find_last_of('.'); local
122 if (last_dot != std::string::npos) {
123 *extension = extension_file_path.substr(last_dot);
  /external/chromium/base/
file_util.cc 52 const FilePath::StringType::size_type last_dot = local
54 return FilePath::StringType(last_dot == FilePath::StringType::npos ?
56 file_name, last_dot+1);
63 const FilePath::StringType::size_type last_dot = local
68 if (last_dot == FilePath::StringType::npos ||
69 (last_separator != std::wstring::npos && last_dot < last_separator)) {
76 value.insert(last_dot, suffix);
file_path.cc 126 const StringType::size_type last_dot = local
130 if (last_dot == StringType::npos || last_dot == 0U)
131 return last_dot;
135 StringType extension(path, last_dot + 1);
142 return last_dot;
147 path.rfind(FilePath::kExtensionSeparator, last_dot - 1);
149 path.find_last_of(FilePath::kSeparators, last_dot - 1,
154 last_dot - penultimate_dot <= 5U &&
155 last_dot - penultimate_dot > 1U)
    [all...]
  /external/chromium_org/chrome/tools/crash_service/
crash_service.cc 48 size_t last_dot = file_path.rfind(L'.'); local
49 if (last_dot == std::wstring::npos)
51 file_path.resize(last_dot);
  /external/chromium_org/content/common/
plugin_list.cc 350 std::string::size_type last_dot = path.rfind('.'); local
351 if (last_dot != std::string::npos && mime_type.empty()) {
352 std::string extension = StringToLowerASCII(std::string(path, last_dot+1));
  /external/chromium_org/base/files/
file_path.cc 120 const StringType::size_type last_dot = local
124 if (last_dot == StringType::npos || last_dot == 0U)
125 return last_dot;
128 path.rfind(FilePath::kExtensionSeparator, last_dot - 1);
130 path.find_last_of(FilePath::kSeparators, last_dot - 1,
136 return last_dot;
145 StringType extension(path, last_dot + 1);
148 if ((last_dot - penultimate_dot) <= 5U &&
149 (last_dot - penultimate_dot) > 1U)
    [all...]

Completed in 322 milliseconds