Home
last modified time | relevance | path

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

/drivers/hdf_core/framework/tools/hdi-gen/util/
Dstring_helper.cpp91 std::string StringHelper::Replace(const std::string &value, const std::string &oldstr, const std::s… in Replace() argument
95 while ((pos = result.find(oldstr, pos)) != std::string::npos) { in Replace()
96 result.replace(pos, oldstr.size(), newstr); in Replace()
Dstring_helper.h32 …static std::string Replace(const std::string &value, const std::string &oldstr, const std::string …