Searched refs:outDate (Results 1 – 7 of 7) sorted by relevance
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/picker/ |
H A D | picker_datetime_component.cpp | 170 PickerDate outDate; in GetMonthDayFormatString() local 171 outDate.FromDays(days); in GetMonthDayFormatString() 178 dateTime.year = outDate.GetYear(); in GetMonthDayFormatString() 179 …dateTime.month = outDate.GetMonth() ? outDate.GetMonth() - 1 : 0; // W3C's month start from 0 to 11 in GetMonthDayFormatString() 180 dateTime.day = outDate.GetDay(); in GetMonthDayFormatString() 184 date.year = outDate.GetYear(); in GetMonthDayFormatString() 185 date.month = outDate.GetMonth(); in GetMonthDayFormatString() 186 date.day = outDate.GetDay(); in GetMonthDayFormatString()
|
/ohos5.0/base/security/certificate_framework/frameworks/core/v1.0/certificate/ |
H A D | x509_certificate.c | 204 static CfResult GetNotBeforeTime(HcfX509Certificate *self, CfBlob *outDate) in GetNotBeforeTime() argument 206 if ((self == NULL) || (outDate == NULL)) { in GetNotBeforeTime() 215 ((HcfX509CertificateImpl *)self)->spiObj, outDate); in GetNotBeforeTime() 218 static CfResult GetNotAfterTime(HcfX509Certificate *self, CfBlob *outDate) in GetNotAfterTime() argument 220 if ((self == NULL) || (outDate == NULL)) { in GetNotAfterTime() 229 ((HcfX509CertificateImpl *)self)->spiObj, outDate); in GetNotAfterTime()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/common/dom/ |
H A D | dom_picker_base.cpp | 96 bool DOMPickerBase::GetPickerDate(const std::string& strDate, PickerDate& outDate) const in GetPickerDate() 103 outDate.SetYear(StringUtils::StringToInt(strValue)); in GetPickerDate() 107 outDate.SetMonth(StringUtils::StringToInt(strValue)); in GetPickerDate() 111 outDate.SetDay(StringUtils::StringToInt(strValue)); in GetPickerDate() 138 PickerDate outDate = outDateTime.GetDate(); in GetPickerDateTime() local 141 outDate.SetMonth(StringUtils::StringToInt(strValues[0])); in GetPickerDateTime() 142 outDate.SetDay(StringUtils::StringToInt(strValues[1])); in GetPickerDateTime() 146 outDate.SetYear(StringUtils::StringToInt(strValues[0])); in GetPickerDateTime() 147 outDate.SetMonth(StringUtils::StringToInt(strValues[1])); in GetPickerDateTime() 148 outDate.SetDay(StringUtils::StringToInt(strValues[2])); in GetPickerDateTime() [all …]
|
H A D | dom_picker_base.h | 72 bool GetPickerDate(const std::string& strDate, PickerDate& outDate) const;
|
/ohos5.0/base/security/certificate_framework/interfaces/innerkits/certificate/ |
H A D | x509_certificate.h | 51 CfResult (*getNotBeforeTime)(HcfX509Certificate *self, CfBlob *outDate); 56 CfResult (*getNotAfterTime)(HcfX509Certificate *self, CfBlob *outDate);
|
/ohos5.0/base/security/certificate_framework/frameworks/core/v1.0/spi/ |
H A D | x509_certificate_spi.h | 46 CfResult (*engineGetNotBeforeTime)(HcfX509CertificateSpi *self, CfBlob *outDate); 48 CfResult (*engineGetNotAfterTime)(HcfX509CertificateSpi *self, CfBlob *outDate);
|
/ohos5.0/base/security/certificate_framework/frameworks/adapter/v1.0/src/ |
H A D | x509_certificate_openssl.c | 775 static CfResult GetNotBeforeX509Openssl(HcfX509CertificateSpi *self, CfBlob *outDate) in GetNotBeforeX509Openssl() argument 777 if ((self == NULL) || (outDate == NULL)) { in GetNotBeforeX509Openssl() 805 return DeepCopyDataToOut(date, length, outDate); in GetNotBeforeX509Openssl() 808 static CfResult GetNotAfterX509Openssl(HcfX509CertificateSpi *self, CfBlob *outDate) in GetNotAfterX509Openssl() argument 810 if ((self == NULL) || (outDate == NULL)) { in GetNotAfterX509Openssl() 838 return DeepCopyDataToOut(date, length, outDate); in GetNotAfterX509Openssl()
|