Home | History | Annotate | Download | only in Interpreter

Lines Matching refs:oldStr

2735 uint64_t replace_all(std::string& str, const std::string& oldStr, const std::string& newStr)
2739 while((pos = str.find(oldStr, pos)) != std::string::npos)
2742 str.replace(pos, oldStr.length(), newStr);