Home
last modified time | relevance | path

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

/ohos5.0/base/global/i18n/frameworks/intl/test/unittest/
H A Dintl_test_extent.cpp1094 std::string rawStr = "1 800 234 45 67"; variable
1266 rawStr = "5201314";
1569 std::string rawStr = "(0755)36661888"; variable
1580 rawStr = "0755 36661888";
1638 rawStr = "119";
1680 rawStr = "118057628100000001";
1693 rawStr = "40082088201";
1735 rawStr = "0106857628100000001";
1777 rawStr = "10645656";
1790 rawStr = "119";
[all …]
/ohos5.0/foundation/ability/dmsfwk/common/include/
H A Ddistributed_sched_utils.h35 int32_t Base64StrToParcel(const std::string& rawStr, Parcel& parcel);
/ohos5.0/foundation/ability/dmsfwk/common/src/
H A Ddistributed_sched_utils.cpp220 int32_t Base64StrToParcel(const std::string& rawStr, Parcel& parcel) in Base64StrToParcel() argument
222 std::string str = Base64Decode(rawStr); in Base64StrToParcel()
/ohos5.0/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent/include/
H A Dhisysevent.h523 auto rawStr = StringFilter::GetInstance().EscapeToRaw(value);
524 eventBase.AppendParam(std::make_shared<Encoded::StringEncodedParam>(key, rawStr));
534 auto rawStr = StringFilter::GetInstance().EscapeToRaw(std::string(value));
535 … eventBase.AppendParam(std::make_shared<Encoded::StringEncodedParam>(key, std::string(rawStr)));
/ohos5.0/foundation/arkui/ace_engine/interfaces/napi/kits/utils/
H A Dnapi_utils.h70 napi_value CreateNapiString(napi_env env, const std::string& rawStr);
H A Dnapi_utils.cpp214 napi_value CreateNapiString(napi_env env, const std::string& rawStr) in CreateNapiString() argument
217 napi_create_string_utf8(env, rawStr.c_str(), rawStr.length(), &retVal); in CreateNapiString()
/ohos5.0/base/hiviewdfx/hisysevent/interfaces/native/innerkits/hisysevent/
H A Dhisysevent.cpp345 auto rawStr = StringFilter::GetInstance().EscapeToRaw(std::string(param.v.s)); in AppendStringParam() local
346 eventBase.AppendParam(std::make_shared<Encoded::StringEncodedParam>(param.name, rawStr)); in AppendStringParam()