Home
last modified time | relevance | path

Searched refs:kSeparators (Results 1 – 3 of 3) sorted by relevance

/external/libchrome/base/files/
Dfile_path_constants.cc13 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/"); member in base::FilePath
15 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/");
18 const size_t FilePath::kSeparatorsLength = arraysize(kSeparators);
Dfile_path.cc133 path.find_last_of(FilePath::kSeparators, last_dot - 1, in ExtensionSeparatorPosition()
214 if (character == kSeparators[i]) { in IsSeparator()
320 new_path.path_.find_last_of(kSeparators, StringType::npos, in DirName()
358 new_path.path_.find_last_of(kSeparators, StringType::npos, in BaseName()
513 new_path.path_.append(1, kSeparators[0]); in Append()
553 path_str.append(&kSeparators[0], 1); in AsEndingWithSeparator()
1315 return NormalizePathSeparatorsTo(kSeparators[0]); in NormalizePathSeparators()
1320 DCHECK_NE(kSeparators + kSeparatorsLength, in NormalizePathSeparatorsTo()
1321 std::find(kSeparators, kSeparators + kSeparatorsLength, separator)); in NormalizePathSeparatorsTo()
1324 std::replace(copy.begin(), copy.end(), kSeparators[i], separator); in NormalizePathSeparatorsTo()
Dfile_path.h165 static const CharType kSeparators[]; variable