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 103 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/
google_util.cc 113 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/
Symbols.cpp 495 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';
    [all...]
  /external/chromium_org/components/crash/tools/
crash_service.cc 47 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/
plugin_list.cc 349 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/
file_path.cc 124 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 - penultimate_dot) > 1U)
    [all...]

Completed in 273 milliseconds