Searched refs:find_this (Results 1 - 5 of 5) sorted by relevance

/external/chromium_org/base/i18n/
H A Dstring_search.h16 // Returns true if |in_this| contains |find_this|. If |match_index| or
24 bool StringSearchIgnoringCaseAndAccents(const string16& find_this,
30 // with the same |find_this| argument. |find_this| is passed as the constructor
35 const string16& find_this);
38 // Returns true if |in_this| contains |find_this|. If |match_index| or
H A Dstring_search.cc14 FixedPatternStringSearchIgnoringCaseAndAccents(const string16& find_this) argument
15 : find_this_(find_this) {
46 // if either |find_this| or |in_this| are empty. In either case basic
71 bool StringSearchIgnoringCaseAndAccents(const string16& find_this, argument
75 return FixedPatternStringSearchIgnoringCaseAndAccents(find_this).Search(
/external/chromium_org/base/strings/
H A Dstring_util.cc496 const StringType& find_this,
502 DCHECK(!find_this.empty());
503 for (size_t offs(str->find(find_this, start_offset));
504 offs != StringType::npos; offs = str->find(find_this, offs)) {
505 str->replace(offs, find_this.length(), replace_with);
515 const string16& find_this,
517 DoReplaceSubstringsAfterOffset(str, start_offset, find_this, replace_with,
523 const std::string& find_this,
525 DoReplaceSubstringsAfterOffset(str, start_offset, find_this, replace_with,
531 const string16& find_this,
494 DoReplaceSubstringsAfterOffset(StringType* str, size_t start_offset, const StringType& find_this, const StringType& replace_with, bool replace_all) argument
513 ReplaceFirstSubstringAfterOffset(string16* str, size_t start_offset, const string16& find_this, const string16& replace_with) argument
521 ReplaceFirstSubstringAfterOffset(std::string* str, size_t start_offset, const std::string& find_this, const std::string& replace_with) argument
529 ReplaceSubstringsAfterOffset(string16* str, size_t start_offset, const string16& find_this, const string16& replace_with) argument
537 ReplaceSubstringsAfterOffset(std::string* str, size_t start_offset, const std::string& find_this, const std::string& replace_with) argument
[all...]
H A Dstring_util.h378 // |find_this| with |replace_with|.
382 const base::string16& find_this,
387 const std::string& find_this,
391 // instances of |find_this| with |replace_with|.
399 const base::string16& find_this,
403 const std::string& find_this,
H A Dstring_util_unittest.cc513 const char* find_this; member in struct:base::__anon2448
534 ASCIIToUTF16(cases[i].find_this),
544 const char* find_this; member in struct:base::__anon2449
564 ASCIIToUTF16(cases[i].find_this),

Completed in 102 milliseconds