Home | History | Annotate | Download | only in base

Lines Matching refs:last_dot

52   const FilePath::StringType::size_type last_dot =
54 return FilePath::StringType(last_dot == FilePath::StringType::npos ?
56 file_name, last_dot+1);
63 const FilePath::StringType::size_type last_dot =
68 if (last_dot == FilePath::StringType::npos ||
69 (last_separator != std::wstring::npos && last_dot < last_separator)) {
76 value.insert(last_dot, suffix);
92 const FilePath::StringType::size_type last_dot =
98 if ((last_dot > last_separator ||
100 last_dot != FilePath::StringType::npos)
101 value.erase(last_dot);