/ohos5.0/base/web/webview/interfaces/kits/napi/webviewcontroller/ |
H A D | web_download_item.cpp | 31 contentDisposition(""), in WebDownloadItem() 58 contentDisposition(""), in WebDownloadItem() 79 this->contentDisposition = std::string(WebDownloadItem_ContentDisposition(downloadItem)); in WebDownloadItem()
|
H A D | web_download_item.h | 48 std::string contentDisposition; variable
|
H A D | napi_web_download_item.cpp | 680 webDownloadPb.set_content_disposition(webDownloadItem->contentDisposition); in SetWebDownloadPb() 773 webDownloadItem->contentDisposition = webDownloadPb.content_disposition(); in JS_Deserialize()
|
/ohos5.0/base/telephony/sms_mms/frameworks/native/mms/src/ |
H A D | mms_body_part_header.cpp | 343 bool MmsBodyPartHeader::GetContentDisposition(std::string &contentDisposition) in GetContentDisposition() argument 345 contentDisposition.clear(); in GetContentDisposition() 346 contentDisposition.assign(strDisposition_); in GetContentDisposition() 350 bool MmsBodyPartHeader::SetContentDisposition(std::string contentDisposition) in SetContentDisposition() argument 352 strDisposition_ = contentDisposition; in SetContentDisposition()
|
H A D | mms_attachment.cpp | 110 bool MmsAttachment::SetContentDisposition(std::string contentDisposition) in SetContentDisposition() argument 112 if (contentDisposition.empty()) { in SetContentDisposition() 116 contentDispositon_.assign(contentDisposition); in SetContentDisposition()
|
H A D | mms_body_part.cpp | 332 bool MmsBodyPart::SetContentDisposition(std::string contentDisposition) in SetContentDisposition() argument 334 return mmsBodyPartHeader_.SetContentDisposition(contentDisposition); in SetContentDisposition() 337 bool MmsBodyPart::GetContentDisposition(std::string &contentDisposition) in GetContentDisposition() argument 339 return mmsBodyPartHeader_.GetContentDisposition(contentDisposition); in GetContentDisposition()
|
/ohos5.0/base/telephony/sms_mms/frameworks/native/mms/include/ |
H A D | mms_body_part.h | 47 bool SetContentDisposition(std::string contentDisposition); 48 bool GetContentDisposition(std::string &contentDisposition);
|
H A D | mms_body_part_header.h | 60 bool GetContentDisposition(std::string &contentDisposition); 65 bool SetContentDisposition(std::string contentDisposition);
|
/ohos5.0/base/web/webview/ohos_interface/include/ohos_nweb/ |
H A D | nweb_download_callback.h | 40 const std::string& contentDisposition, const std::string& mimetype, long contentLength) = 0;
|
/ohos5.0/base/telephony/sms_mms/interfaces/innerkits/ |
H A D | mms_attachment.h | 85 bool SetContentDisposition(std::string contentDisposition);
|
/ohos5.0/base/telephony/sms_mms/frameworks/js/napi/include/ |
H A D | napi_mms.h | 59 std::string contentDisposition = ""; member
|
/ohos5.0/base/telephony/sms_mms/interfaces/kits/js/ |
H A D | @ohos.telephony.sms.d.ts | 1778 contentDisposition: DispositionType;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/src/ |
H A D | ArkWeb.ts | 134 userAgent: string; contentDisposition: string;
|
/ohos5.0/base/telephony/sms_mms/frameworks/js/napi/src/ |
H A D | napi_mms.cpp | 282 attachmentContext.contentDisposition = it.GetContentDisposition(); in getAttachmentByDecodeMms() 356 env, attachment, "contentDisposition", formatDispositionValue(context.contentDisposition)); in CreateAttachmentValue() 1037 …attachmentContext.contentDisposition = parseDispositionValue(GetNapiInt32Value(env, value, "conten… in BuildMmsAttachment() 1162 if (it->contentDisposition.size() > 0) { in SetAttachmentToCore() 1163 itAttachment.SetContentDisposition(it->contentDisposition); in SetAttachmentToCore()
|
/ohos5.0/base/telephony/sms_mms/ |
H A D | README_zh.md | 271 contentDisposition: mms.ATTACHMENT,
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/web/resource/ |
H A D | web_client_impl.h | 38 …dStart(const std::string& url, const std::string& userAgent, const std::string& contentDisposition,
|
H A D | web_client_impl.cpp | 123 const std::string& contentDisposition, const std::string& mimetype, long contentLength) in OnDownloadStart() argument 130 delegate->OnDownloadStart(url, userAgent, contentDisposition, mimetype, contentLength); in OnDownloadStart()
|
H A D | web_delegate.h | 837 …dStart(const std::string& url, const std::string& userAgent, const std::string& contentDisposition,
|
H A D | web_delegate.cpp | 4856 const std::string& contentDisposition, const std::string& mimetype, long contentLength) in OnDownloadStart() argument 4861 [weak = WeakClaim(this), url, userAgent, contentDisposition, mimetype, contentLength]() { in OnDownloadStart() 4867 …std::make_shared<DownloadStartEvent>(url, userAgent, contentDisposition, mimetype, contentLength)); in OnDownloadStart()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/cross_platform/ |
H A D | web_delegate_cross.cpp | 1305 auto contentDisposition = webDownloadResponse->GetContentDisposition(); in OnDownloadStart() local 1309 [weak = WeakClaim(this), url, userAgent, contentDisposition, mimetype, contentLength]() { in OnDownloadStart() 1320 … std::make_shared<DownloadStartEvent>(url, userAgent, contentDisposition, mimetype, contentLength); in OnDownloadStart()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/web/ |
H A D | web_event.h | 1081 …tEvent(const std::string& url, const std::string& userAgent, const std::string& contentDisposition, in DownloadStartEvent() argument 1084 … contentDisposition_(contentDisposition), mimetype_(mimetype), contentLength_(contentLength) in DownloadStartEvent()
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-telephony-kit/ |
H A D | js-apis-sms-sys.md | 2086 | contentDisposition | [DispositionType](#dispositiontype8) | 是 | 内容处理 |
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/export/ |
H A D | arkComponent.d.ts | 1397 contentDisposition: string;
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkweb/ |
H A D | ts-basic-components-web.md | 3327 console.log('contentDisposition:' + event.contentDisposition) 9649 | contentDisposition | string | 是 | 服务器返回的 Content-Disposition响应头,可能为空。 |
|
/ohos5.0/docs/zh-cn/release-notes/api-diff/v4.0-beta2/ |
H A D | js-apidiff-telephony.md | 823 …化|类名:MmsAttachment;<br>方法or属性:contentDisposition: DispositionType;<br>旧版本信息:|类名:MmsAttachment;<br>… 1199 …化|类名:MmsAttachment;<br>方法or属性:contentDisposition: DispositionType;<br>旧版本信息:|类名:MmsAttachment;<br>…
|