Home
last modified time | relevance | path

Searched defs:subStr (Results 1 – 3 of 3) sorted by relevance

/commonlibrary/c_utils/base/src/
Dfile_ex.cpp94 bool RustStringExistsInFile(const rust::String& fileName, const rust::String& subStr, bool caseSens… in RustStringExistsInFile()
101 int RustCountStrInFile(const rust::String& fileName, const rust::String& subStr, bool caseSensitiv… in RustCountStrInFile()
357 bool StringExistsInFile(const string& fileName, const string& subStr, bool caseSensitive /*= true*/) in StringExistsInFile()
381 int CountStrInStr(const string& str, const string& subStr) in CountStrInStr()
399 int CountStrInFile(const string& fileName, const string& subStr, bool caseSensitive /*= true*/) in CountStrInFile()
/commonlibrary/ets_utils/js_api_module/url/
Djs_url.cpp112 … std::string subStr = temp.substr(pos + 1, 2); // 2:Truncate the last two digits of the % in DecodeSpecialChars() local
532 std::string subStr = num.substr(2); // 2:jump 0x in IsNumber() local
539 std::string subStr = num.substr(1); in IsNumber() local
/commonlibrary/ets_utils/js_api_module/xml/
Djs_xml.cpp72 …std::string XmlSerializer::Replace(std::string str, const std::string &subStr, const std::string &… in Replace()