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

  /external/chromium/chrome/common/extensions/
extension_resource.cc 73 win_path[i] = FilePath::kSeparators[0];
extension_unpacker.cc 66 const FilePath::StringType kSeparators(FilePath::kSeparators);
74 if ((i == 0 || kSeparators.find(value[i-1]) == npos) &&
75 (i+1 < value.length() || kSeparators.find(value[i+1]) == npos)) {
  /external/chromium/base/
file_util.cc 45 path_str.append(&FilePath::kSeparators[0], 1);
66 value.find_last_of(FilePath::StringType(FilePath::kSeparators));
267 // to check kSeparators[0].
270 FilePath::kSeparators[0])
371 path->push_back(FilePath::kSeparators[0]);
file_path.h 144 // but kSeparators[0] is treated as the canonical separator and will be used
146 static const CharType kSeparators[];
178 // Returns true if |character| is in kSeparators.
file_path.cc 33 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/");
35 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/");
149 path.find_last_of(FilePath::kSeparators, last_dot - 1,
150 arraysize(FilePath::kSeparators) - 1);
199 for (size_t i = 0; i < arraysize(kSeparators) - 1; ++i) {
200 if (character == kSeparators[i]) {
306 new_path.path_.find_last_of(kSeparators, StringType::npos,
307 arraysize(kSeparators) - 1);
344 new_path.path_.find_last_of(kSeparators, StringType::npos,
345 arraysize(kSeparators) - 1)
    [all...]
  /external/chromium/chrome/browser/autofill/
credit_card.cc 386 const char16 kSeparators[] = {'-', ' ', '\0'};
388 RemoveChars(number, kSeparators, &stripped);

Completed in 168 milliseconds