HomeSort by relevance Sort by last modified time
    Searched refs:kSeparators (Results 1 - 5 of 5) sorted by null

  /external/libchrome/base/files/
file_path_constants.cc 13 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/");
15 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/");
18 const size_t FilePath::kSeparatorsLength = arraysize(kSeparators);
file_path.h 161 // but kSeparators[0] is treated as the canonical separator and will be used
163 static const CharType kSeparators[];
165 // arraysize(kSeparators).
205 // Returns true if |character| is in kSeparators.
file_path.cc 131 path.find_last_of(FilePath::kSeparators, last_dot - 1,
213 if (character == kSeparators[i]) {
319 new_path.path_.find_last_of(kSeparators, StringType::npos,
357 new_path.path_.find_last_of(kSeparators, StringType::npos,
512 new_path.path_.append(1, kSeparators[0]);
552 path_str.append(&kSeparators[0], 1);
    [all...]
  /external/autotest/client/deps/glbench/src/
filepath.h 27 char kSeparators[2] = "/";
filepath.cc 20 new_path.path_.find_last_of(kSeparators, std::string::npos);
50 for (size_t i = 0; i < strlen(kSeparators) - 1; ++i) {
51 if (character == kSeparators[i]) {
95 new_path.path_.append(1, kSeparators[0]);

Completed in 275 milliseconds