Lines Matching defs:dot
359 const StringType::size_type dot = ExtensionSeparatorPosition(base.path_);
360 if (dot == StringType::npos)
363 return base.path_.substr(dot, StringType::npos);
368 const StringType::size_type dot = FinalExtensionSeparatorPosition(base.path_);
369 if (dot == StringType::npos)
372 return base.path_.substr(dot, StringType::npos);
379 const StringType::size_type dot = ExtensionSeparatorPosition(path_);
380 if (dot == StringType::npos)
383 return FilePath(path_.substr(0, dot));
390 const StringType::size_type dot = FinalExtensionSeparatorPosition(path_);
391 if (dot == StringType::npos)
394 return FilePath(path_.substr(0, dot));