Searched refs:find_this (Results 1 – 3 of 3) sorted by relevance
/external/chromium/base/ |
D | string_util.cc | 711 const StringType& find_this, in DoReplaceSubstringsAfterOffset() argument 717 DCHECK(!find_this.empty()); in DoReplaceSubstringsAfterOffset() 718 for (typename StringType::size_type offs(str->find(find_this, start_offset)); in DoReplaceSubstringsAfterOffset() 719 offs != StringType::npos; offs = str->find(find_this, offs)) { in DoReplaceSubstringsAfterOffset() 720 str->replace(offs, find_this.length(), replace_with); in DoReplaceSubstringsAfterOffset() 730 const string16& find_this, in ReplaceFirstSubstringAfterOffset() argument 732 DoReplaceSubstringsAfterOffset(str, start_offset, find_this, replace_with, in ReplaceFirstSubstringAfterOffset() 738 const std::string& find_this, in ReplaceFirstSubstringAfterOffset() argument 740 DoReplaceSubstringsAfterOffset(str, start_offset, find_this, replace_with, in ReplaceFirstSubstringAfterOffset() 746 const string16& find_this, in ReplaceSubstringsAfterOffset() argument [all …]
|
D | string_util.h | 447 const string16& find_this, 452 const std::string& find_this, 463 const string16& find_this, 467 const std::string& find_this,
|
D | string_util_unittest.cc | 563 const char* find_this; in TEST() member 584 ASCIIToUTF16(cases[i].find_this), in TEST() 594 const char* find_this; in TEST() member 614 ASCIIToUTF16(cases[i].find_this), in TEST()
|