Searched defs:kSeparators (Results 1 - 3 of 3) sorted by relevance

/external/chromium/base/
H A Dfile_path.h144 // but kSeparators[0] is treated as the canonical separator and will be used
146 static const CharType kSeparators[]; member in class:FilePath
178 // Returns true if |character| is in kSeparators.
H A Dfile_path.cc33 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("\\/"); member in class:FilePath
35 const FilePath::CharType FilePath::kSeparators[] = FILE_PATH_LITERAL("/"); member in class:FilePath
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)
[all...]
/external/chromium/chrome/browser/autofill/
H A Dcredit_card.cc386 const char16 kSeparators[] = {'-', ' ', '\0'}; local
388 RemoveChars(number, kSeparators, &stripped);

Completed in 81 milliseconds