Lines Matching refs:extension
106 // Find the position of the '.' that separates the extension from the rest
108 // Returns npos if it can't find an extension.
117 // Same as above, but allow a second extension component of up to 4
118 // characters when the rightmost extension component is a common double
119 // extension (gz, bz2, Z). For example, foo.tar.gz or foo.tar.Z would have
120 // extension components of '.tar.gz' and '.tar.Z' respectively.
124 // No extension, or the extension is the whole filename.
141 StringType extension(path, penultimate_dot + 1);
142 if (LowerCaseEqualsASCII(extension, kCommonDoubleExtensions[i]))
146 StringType extension(path, last_dot + 1);
148 if (LowerCaseEqualsASCII(extension, kCommonDoubleExtensionSuffixes[i])) {
369 StringType FilePath::Extension() const {
388 if (Extension().empty())
416 StringType ext = Extension();
433 FilePath FilePath::AddExtension(StringPieceType extension) const {
437 // If the new extension is "" or ".", then just return the current FilePath.
438 if (extension.empty() ||
439 (extension.size() == 1 && extension[0] == kExtensionSeparator))
443 if (extension[0] != kExtensionSeparator &&
447 extension.AppendToString(&str);
451 FilePath FilePath::ReplaceExtension(StringPieceType extension) const {
456 // If the new extension is "" or ".", then just remove the current extension.
457 if (extension.empty() ||
458 (extension.size() == 1 && extension[0] == kExtensionSeparator))
462 if (extension[0] != kExtensionSeparator)
464 extension.AppendToString(&str);
468 bool FilePath::MatchesExtension(StringPieceType extension) const {
469 DCHECK(extension.empty() || extension[0] == kExtensionSeparator);
471 StringType current_extension = Extension();
473 if (current_extension.length() != extension.length())
476 return FilePath::CompareEqualIgnoreCase(extension, current_extension);