Searched refs:UnescapeText (Results 1 – 5 of 5) sorted by relevance
37 virtual std::string UnescapeText(const std::string &from);
64 virtual std::string UnescapeText(const std::string &from);
626 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");
124 std::string VCardDecoderV30::UnescapeText(const std::string &from) in UnescapeText() function in OHOS::Telephony::VCardDecoderV30
235 std::string value = UnescapeText(temp); in DealRawDataValue()756 std::string VCardDecoderV21::UnescapeText(const std::string &from) in UnescapeText() function in OHOS::Telephony::VCardDecoderV21