Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:newStr

2735 uint64_t replace_all(std::string& str, const std::string& oldStr, const std::string& newStr)
2742 str.replace(pos, oldStr.length(), newStr);
2743 pos += newStr.length();