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

  /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);

Completed in 63 milliseconds