Home
last modified time | relevance | path

Searched refs:rawValue (Results 1 - 9 of 9) sorted by relevance

/base/telephony/core_service/utils/vcard/include/
H A Dvcard_contact.h88 void AddDatas(std::string name, std::string rawValue, std::string byte, std::vector<std::string> values,
108 void AddIms(std::string name, std::string rawValue, std::string propValue, std::vector<std::string> values,
110 void AddNameData(std::string name, std::string rawValue, std::vector<std::string> values,
113 std::string rawValue, std::map<std::string, std::vector<std::string>> parasMap, std::string propValue);
114 void SetSip(std::string rawValue, std::map<std::string, std::vector<std::string>> parasMap, std::string propValue);
116 std::string rawValue, std::map<std::string, std::vector<std::string>> parasMap, std::string propValue);
117 void AddPhonesData(std::string rawValue, std::string propValue, std::vector<std::string> values,
119 void AddOrganizationsData(std::string rawValue, std::string propValue, std::vector<std::string> values,
121 void AddEmailsData(std::string rawValue, std::string propValue, std::vector<std::string> values,
123 void AddPostalDatas(std::string rawValue, st
[all...]
H A Dvcard_decoder_v21.h60 void DealAdrOrgN(const std::string &rawValue, std::shared_ptr<VCardRawData> rawData, const std::string &fromCharSet,
72 void DealV21Value(std::string &rawValue);
73 void DealBase64OrB(const std::string &rawValue, std::shared_ptr<VCardRawData> rawData, int32_t &errorCode);
74 void DealEncodingQPOrNoEncodingFN(const std::string &rawValue, std::shared_ptr<VCardRawData> rawData,
82 void ParseQuotedPrintableValues(const std::string &rawValue, std::vector<std::string> &encodedValues,
H A Dvcard_constructor.h53 void AddLine(const std::string &type, const std::string &rawValue);
55 void AddLine(const std::string &type, const std::string &rawValue, bool needCharset, bool needQuotedPrintable);
56 void AddLine(const std::string &type, const std::vector<std::string> &paramList, const std::string &rawValue);
57 void AddLine(const std::string &type, const std::vector<std::string> &paramList, const std::string &rawValue,
H A Dvcard_raw_data.h26 void SetRawValue(const std::string &rawValue);
/base/telephony/core_service/utils/vcard/src/
H A Dvcard_contact.cpp35 std::string rawValue; in AddRawData() local
41 rawValue = rawData->GetRawValue(); in AddRawData()
50 AddDatas(name, rawValue, byte, values, propValue, groups, parasMap); in AddRawData()
53 void VCardContact::AddDatas(std::string name, std::string rawValue, std::string byte, std::vector<std::string> values, in AddDatas() argument
58 vCardType_ = rawValue; in AddDatas()
62 AddNameData(name, rawValue, values, parasMap, propValue); in AddDatas()
66 AddSoundDatas(rawValue, propValue, values, parasMap); in AddDatas()
68 AddPostalDatas(rawValue, propValue, values, parasMap); in AddDatas()
70 AddEmailsData(rawValue, propValue, values, parasMap); in AddDatas()
72 AddOrganizationsData(rawValue, propValu in AddDatas()
83 AddOtherDatas(std::string name, std::string rawValue, std::string byte, std::vector<std::string> values, std::string propValue, std::vector<std::string> groups, std::map<std::string, std::vector<std::string>> parasMap) AddOtherDatas() argument
107 AddRemainDatas(std::string name, std::string rawValue, std::vector<std::string> values, std::string propValue, std::map<std::string, std::vector<std::string>> parasMap) AddRemainDatas() argument
713 AddIms(std::string name, std::string rawValue, std::string propValue, std::vector<std::string> values, std::map<std::string, std::vector<std::string>> parasMap) AddIms() argument
726 AddNameData(std::string name, std::string rawValue, std::vector<std::string> values, std::map<std::string, std::vector<std::string>> parasMap, std::string propValue) AddNameData() argument
757 AddCustom( std::string rawValue, std::map<std::string, std::vector<std::string>> parasMap, std::string propValue) AddCustom() argument
827 SetSip( std::string rawValue, std::map<std::string, std::vector<std::string>> parasMap, std::string propValue) SetSip() argument
854 AddSipData( std::string rawValue, std::map<std::string, std::vector<std::string>> parasMap, std::string propValue) AddSipData() argument
878 AddPhonesData(std::string rawValue, std::string propValue, std::vector<std::string> values, std::map<std::string, std::vector<std::string>> parasMap) AddPhonesData() argument
909 HandlePhoneCase(std::string phoneNumber, std::string rawValue, std::string propValue, std::vector<std::string> values, std::map<std::string, std::vector<std::string>> parasMap) HandlePhoneCase() argument
942 AddOrganizationsData(std::string rawValue, std::string propValue, std::vector<std::string> values, std::map<std::string, std::vector<std::string>> parasMap) AddOrganizationsData() argument
960 AddEmailsData(std::string rawValue, std::string propValue, std::vector<std::string> values, std::map<std::string, std::vector<std::string>> parasMap) AddEmailsData() argument
1006 AddPostalDatas(std::string rawValue, std::string propValue, std::vector<std::string> values, std::map<std::string, std::vector<std::string>> parasMap) AddPostalDatas() argument
[all...]
H A Dvcard_decoder_v21.cpp202 std::string rawValue = rawData->GetRawValue(); in DealRawDataValue() local
210 DealAdrOrgN(rawValue, rawData, sourceCharset, targetCharset, errorCode); in DealRawDataValue()
215 DealEncodingQPOrNoEncodingFN(rawValue, rawData, sourceCharset, targetCharset, errorCode); in DealRawDataValue()
219 DealBase64OrB(rawValue, rawData, errorCode); in DealRawDataValue()
227 DealV21Value(rawValue); in DealRawDataValue()
229 std::string temp = VCardUtils::ConvertCharset(rawValue, "", targetCharset, errorCode); in DealRawDataValue()
241 void VCardDecoderV21::DealV21Value(std::string &rawValue) in DealV21Value() argument
251 str = rawValue; in DealV21Value()
255 rawValue = str; in DealV21Value()
264 const std::string &rawValue, st in DealBase64OrB()
263 DealBase64OrB( const std::string &rawValue, std::shared_ptr<VCardRawData> rawData, int32_t &errorCode) DealBase64OrB() argument
275 DealEncodingQPOrNoEncodingFN(const std::string &rawValue, std::shared_ptr<VCardRawData> rawData, const std::string &fromCharSet, const std::string &toCharSet, int32_t &errorCode) DealEncodingQPOrNoEncodingFN() argument
583 DealAdrOrgN(const std::string &rawValue, std::shared_ptr<VCardRawData> rawData, const std::string &fromCharSet, const std::string &toCharSet, int32_t &errorCode) DealAdrOrgN() argument
616 ParseQuotedPrintableValues(const std::string &rawValue, std::vector<std::string> &encodedValues, const std::string &fromCharSet, const std::string &toCharSet, int32_t &errorCode) ParseQuotedPrintableValues() argument
[all...]
H A Dvcard_raw_data.cpp33 void VCardRawData::SetRawValue(const std::string &rawValue) in SetRawValue() argument
35 rawValue_ = rawValue; in SetRawValue()
H A Dvcard_constructor.cpp833 void VCardConstructor::AddLine(const std::string &type, const std::string &rawValue) in AddLine() argument
835 AddLine(type, rawValue, false, false); in AddLine()
844 const std::string &type, const std::string &rawValue, bool needCharset, bool needQuotedPrintable) in AddLine()
846 AddLine(type, {}, rawValue, needCharset, needQuotedPrintable); in AddLine()
850 const std::string &type, const std::vector<std::string> &paramList, const std::string &rawValue) in AddLine()
852 AddLine(type, paramList, rawValue, false, false); in AddLine()
856 const std::string &rawValue, bool needCharset, bool needQuotedPrintable) in AddLine()
863 std::string encodedValue = needQuotedPrintable ? EncodeQuotedPrintable(rawValue) : DealCharacters(rawValue); in AddLine()
894 for (std::string rawValue in AddLine()
843 AddLine( const std::string &type, const std::string &rawValue, bool needCharset, bool needQuotedPrintable) AddLine() argument
849 AddLine( const std::string &type, const std::vector<std::string> &paramList, const std::string &rawValue) AddLine() argument
855 AddLine(const std::string &type, const std::vector<std::string> &paramList, const std::string &rawValue, bool needCharset, bool needQuotedPrintable) AddLine() argument
[all...]
/base/telephony/core_service/test/unittest/core_service_gtest/
H A Dvcard_test.cpp1391 std::string rawValue = "test1"; in HWTEST_F() local
1392 constructor->AddLine(type, paramList, rawValue, true, true); in HWTEST_F()

Completed in 9 milliseconds