Home
last modified time | relevance | path

Searched refs:encodedString (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/util/
H A Dbase64_decode.h70 inline size_t CountPadding(string_view encodedString) in BASE_BEGIN_NAMESPACE()
72 auto end = encodedString.end(); in BASE_BEGIN_NAMESPACE()
86 inline vector<uint8_t> Base64Decode(string_view encodedString) in Base64Decode() argument
89 vector<uint8_t> decodedBinary(encodedString.size() * 3u / 4u); in Base64Decode()
91 …Detail::DecodeQuartets(decodedBinary.data(), encodedString.data(), static_cast<signed>(encodedStri… in Base64Decode()
93 …decodedBinary.cend() - static_cast<ptrdiff_t>(Detail::CountPadding(encodedString)), decodedBinary.… in Base64Decode()
H A Dbase64_encode.h82 string encodedString((binaryData.size() + 2U) / 3U * 4U, '='); in Base64Encode()
84 auto dst = encodedString.data(); in Base64Encode()
94 return encodedString; in Base64Encode()
/ohos5.0/base/telephony/core_service/utils/vcard/include/
H A Dvcard_decoder_v21.h87 std::string DecodeQuotedPrintable(const std::string &encodedString);
/ohos5.0/base/telephony/core_service/utils/vcard/src/
H A Dvcard_decoder_v21.cpp670 std::string VCardDecoderV21::DecodeQuotedPrintable(const std::string &encodedString) in DecodeQuotedPrintable() argument
672 std::istringstream iss(encodedString); in DecodeQuotedPrintable()