Home
last modified time | relevance | path

Searched refs:oldStr (Results 1 – 1 of 1) sorted by relevance

/src/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Python/
H A DScriptInterpreterPython.cpp2336 uint64_t replace_all(std::string &str, const std::string &oldStr, in replace_all() argument
2340 while ((pos = str.find(oldStr, pos)) != std::string::npos) { in replace_all()
2342 str.replace(pos, oldStr.length(), newStr); in replace_all()