Searched refs:last_dot (Results 1 - 6 of 6) sorted by relevance

/external/chromium_org/chrome/renderer/plugins/
H A Dplugin_uma.cc103 size_t last_dot = extension_file_path.find_last_of('.'); local
104 if (last_dot != std::string::npos) {
105 *extension = extension_file_path.substr(last_dot);
/external/chromium_org/components/google/core/browser/
H A Dgoogle_util.cc113 const size_t last_dot = google_hostname.find_last_of('.'); local
114 if (last_dot == std::string::npos) {
117 std::string country_code = google_hostname.substr(last_dot + 1);
/external/lldb/source/Host/macosx/
H A DSymbols.cpp495 char *last_dot = strrchr(path, '.'); local
496 while (last_dot != NULL && last_dot[0])
498 char *next_slash = strchr(last_dot, '/');
509 *last_dot = '\0';
/external/chromium_org/components/crash/tools/
H A Dcrash_service.cc47 size_t last_dot = file_path.rfind(L'.'); local
48 if (last_dot == std::wstring::npos)
50 file_path.resize(last_dot);
/external/chromium_org/content/common/
H A Dplugin_list.cc349 std::string::size_type last_dot = path.rfind('.'); local
350 if (last_dot != std::string::npos && mime_type.empty()) {
352 base::StringToLowerASCII(std::string(path, last_dot+1));
/external/chromium_org/base/files/
H A Dfile_path.cc124 const StringType::size_type last_dot = FinalExtensionSeparatorPosition(path); local
127 if (last_dot == StringType::npos || last_dot == 0U)
128 return last_dot;
131 path.rfind(FilePath::kExtensionSeparator, last_dot - 1);
133 path.find_last_of(FilePath::kSeparators, last_dot - 1,
139 return last_dot;
148 StringType extension(path, last_dot + 1);
151 if ((last_dot - penultimate_dot) <= 5U &&
152 (last_dot
[all...]

Completed in 574 milliseconds