Home
last modified time | relevance | path

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

/ohos5.0/base/telephony/core_service/utils/vcard/include/
H A Dvcard_decoder_v30.h37 virtual std::string UnescapeText(const std::string &from);
H A Dvcard_decoder_v21.h64 virtual std::string UnescapeText(const std::string &from);
/ohos5.0/base/telephony/core_service/test/unittest/utils_vcard_gtest/
H A Dcontact_data_test.cpp626 EXPECT_STREQ(decoder.UnescapeText("").c_str(), "");
628 EXPECT_STREQ(decoder.UnescapeText("teststring").c_str(), "teststring");
629 EXPECT_STREQ(decoder.UnescapeText("test\nstring").c_str(), "test\nstring");
630 EXPECT_STREQ(decoder.UnescapeText("test\\Nstring").c_str(), "test\nstring");
631 EXPECT_STREQ(decoder.UnescapeText("test\\Xstring").c_str(), "testXstring");
/ohos5.0/base/telephony/core_service/utils/vcard/src/
H A Dvcard_decoder_v30.cpp124 std::string VCardDecoderV30::UnescapeText(const std::string &from) in UnescapeText() function in OHOS::Telephony::VCardDecoderV30
H A Dvcard_decoder_v21.cpp235 std::string value = UnescapeText(temp); in DealRawDataValue()
756 std::string VCardDecoderV21::UnescapeText(const std::string &from) in UnescapeText() function in OHOS::Telephony::VCardDecoderV21