Searched refs:replaceThis (Results 1 – 1 of 1) sorted by relevance
3168 …bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis…13623 …bool replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis… in replaceInPlace() argument13625 std::size_t i = str.find( replaceThis ); in replaceInPlace()13628 str = str.substr( 0, i ) + withThis + str.substr( i+replaceThis.size() ); in replaceInPlace()13630 i = str.find( replaceThis, i+withThis.size() ); in replaceInPlace()