Searched refs:withThis (Results 1 – 1 of 1) sorted by relevance
3168 …ol replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis );13623 …l replaceInPlace( std::string& str, std::string const& replaceThis, std::string const& withThis ) { in replaceInPlace() argument13628 str = str.substr( 0, i ) + withThis + str.substr( i+replaceThis.size() ); in replaceInPlace()13629 if( i < str.size()-withThis.size() ) in replaceInPlace()13630 i = str.find( replaceThis, i+withThis.size() ); in replaceInPlace()