Searched refs:strTmp (Results 1 - 7 of 7) sorted by relevance
/base/hiviewdfx/hiview/plugins/sysevent_source/ |
H A D | monitor_config.cpp | 43 std::string strTmp = StringUtil::TrimStr(buf); in Parse() local 44 if (strTmp.empty()) { in Parse() 48 if (!regex_search(strTmp, result, std::regex("(collectPeriod|reportPeriod|totalSizeBenchMark|" in Parse() 50 HIVIEW_LOGW("match field failed %{public}s", strTmp.c_str()); in Parse()
|
/base/hiviewdfx/hiview/base/utility/ |
H A D | string_util.cpp | 70 string strTmp = str; in ReplaceStr() local 71 while ((pos = strTmp.find(src, pos)) != string::npos) { in ReplaceStr() 72 strTmp.replace(pos, src.length(), dst); in ReplaceStr() 76 return strTmp; in ReplaceStr() 81 string strTmp = str; in TrimStr() local 82 strTmp.erase(0, strTmp.find_first_not_of(cTrim)); in TrimStr() 83 strTmp.erase(strTmp.find_last_not_of(cTrim) + sizeof(char)); in TrimStr() 84 return strTmp; in TrimStr() 91 string strTmp = needTrim ? TrimStr(str) : str; SplitStr() local [all...] |
/base/hiviewdfx/hiview/core/ |
H A D | plugin_config.cpp | 41 std::string strTmp = StringUtil::TrimStr(buf);
in StartParse() local 42 if (strTmp == "") {
in StartParse() 47 if (!regex_search(strTmp, result, std::regex("(plugins|pipelines|pipelinegroups)\\s*:\\s*(\\d+)"))) {
in StartParse() 60 ParsePlugin(strTmp);
in StartParse() 62 ParsePipeline(strTmp);
in StartParse() 64 ParsePipelineGroup(strTmp);
in StartParse()
|
/base/hiviewdfx/hicollie/frameworks/native/ |
H A D | xcollie_utils.cpp | 200 std::string strTmp = str; in TrimStr() local 201 strTmp.erase(0, strTmp.find_first_not_of(cTrim)); in TrimStr() 202 strTmp.erase(strTmp.find_last_not_of(cTrim) + sizeof(char)); in TrimStr() 203 return strTmp; in TrimStr() 210 std::string strTmp = needTrim ? TrimStr(str) : str; in SplitStr() local 213 std::string::size_type pos = strTmp.find(sep); in SplitStr() 215 strPart = needTrim ? TrimStr(strTmp) : strTmp; in SplitStr() [all...] |
/base/telephony/sms_mms/frameworks/native/mms/src/ |
H A D | mms_body_part_header.cpp | 136 std::string strTmp = "";
in DecodeContentDisposition() local 138 if (!decodeBuffer.DecodeText(strTmp, tmpLen)) {
in DecodeContentDisposition() 142 strDisposition_ = strTmp;
in DecodeContentDisposition() 185 std::string strTmp = "";
in DecodeDispositionParameter() local 187 if (!decodeBuffer.DecodeText(strTmp, tmpLen)) {
in DecodeDispositionParameter() 191 strFileName_ = strTmp;
in DecodeDispositionParameter()
|
/base/telephony/core_service/interfaces/innerkits/include/ |
H A D | tel_ril_modem_parcel.h | 44 std::string strTmp = ""; member
|
/base/hiviewdfx/hidumper/frameworks/native/src/manager/ |
H A D | dump_implement.cpp | 771 std::string strTmp = str; in RemoveCharacterFromStr() local 772 while (strTmp.find(character) != std::string::npos) { in RemoveCharacterFromStr() 773 strTmp.erase(strTmp.find(character), 1); in RemoveCharacterFromStr() 775 return strTmp; in RemoveCharacterFromStr()
|
Completed in 8 milliseconds