Searched defs:find_this (Results 1 - 2 of 2) sorted by relevance

/external/chromium/base/
H A Dstring_util_unittest.cc563 const char* find_this; member in struct:base::__anon1612
584 ASCIIToUTF16(cases[i].find_this),
594 const char* find_this; member in struct:base::__anon1613
614 ASCIIToUTF16(cases[i].find_this),
H A Dstring_util.cc711 const StringType& find_this,
717 DCHECK(!find_this.empty());
718 for (typename StringType::size_type offs(str->find(find_this, start_offset));
719 offs != StringType::npos; offs = str->find(find_this, offs)) {
720 str->replace(offs, find_this.length(), replace_with);
730 const string16& find_this,
732 DoReplaceSubstringsAfterOffset(str, start_offset, find_this, replace_with,
738 const std::string& find_this,
740 DoReplaceSubstringsAfterOffset(str, start_offset, find_this, replace_with,
746 const string16& find_this,
709 DoReplaceSubstringsAfterOffset(StringType* str, typename StringType::size_type start_offset, const StringType& find_this, const StringType& replace_with, bool replace_all) argument
728 ReplaceFirstSubstringAfterOffset(string16* str, string16::size_type start_offset, const string16& find_this, const string16& replace_with) argument
736 ReplaceFirstSubstringAfterOffset(std::string* str, std::string::size_type start_offset, const std::string& find_this, const std::string& replace_with) argument
744 ReplaceSubstringsAfterOffset(string16* str, string16::size_type start_offset, const string16& find_this, const string16& replace_with) argument
752 ReplaceSubstringsAfterOffset(std::string* str, std::string::size_type start_offset, const std::string& find_this, const std::string& replace_with) argument
[all...]

Completed in 69 milliseconds