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

  /external/chromium_org/base/files/
file_path_constants.cc 10 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/");
12 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/");
15 const size_t FilePath::kSeparatorsLength = arraysize(kSeparators);
file_path.h 149 // but kSeparators[0] is treated as the canonical separator and will be used
151 static const CharType kSeparators[];
153 // arraysize(kSeparators).
186 // Returns true if |character| is in kSeparators.
  /external/chromium/base/
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);
  /external/chromium_org/components/autofill/core/browser/
credit_card.cc 135 const char16 kSeparators[] = {'-', ' ', '\0'};
137 RemoveChars(number, kSeparators, &stripped);

Completed in 1111 milliseconds