/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/svg/ |
H A D | render_svg_use.cpp | 35 auto href = svgUseComponent->GetDeclaration()->GetHref(); in Update() local 36 if (href.empty()) { in Update() 40 auto refComponent = AceType::DynamicCast<RenderComponent>(GetComponentHrefFromRoot(href)); in Update() 42 LOGW("ref RenderComponent is null, href:%{public}s", href.c_str()); in Update() 47 LOGW("create svg use child fail, href:%{public}s", href.c_str()); in Update() 52 renderNode->Inherit(svgUseComponent->GetDeclaration(), GetDeclarationHrefFromRoot(href)); in Update()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/svg/parse/ |
H A D | svg_node.cpp | 49 const std::string& href) const in AsClipPathCommands() 56 if (href.empty()) { in AsClipPathCommands() 59 auto refSvgNode = svgContext->GetSvgNodeById(href); in AsClipPathCommands() 75 std::optional<Gradient> SvgNode::GetGradient(const std::string& href) in GetGradient() argument 82 if (href.empty()) { in GetGradient() 85 auto refSvgNode = svgContext->GetSvgNodeById(href); in GetGradient()
|
H A D | svg_circle.cpp | 47 auto href = declaration->GetFillState().GetHref(); in CreateRender() local 48 if (!href.empty()) { in CreateRender() 49 auto gradient = GetGradient(href); in CreateRender()
|
H A D | svg_path.cpp | 51 auto href = declaration->GetFillState().GetHref(); in CreateRender() local 52 if (!href.empty()) { in CreateRender() 53 auto gradient = GetGradient(href); in CreateRender()
|
H A D | svg_g.cpp | 52 auto href = declaration->GetFillState().GetHref(); in CreateRender() local 53 if (!href.empty()) { in CreateRender() 54 auto gradient = GetGradient(href); in CreateRender()
|
H A D | svg_line.cpp | 46 auto href = component_->GetDeclaration()->GetFillState().GetHref(); in CreateRender() local 47 if (!href.empty()) { in CreateRender() 48 auto gradient = GetGradient(href); in CreateRender()
|
H A D | svg_polygon.cpp | 53 auto href = declaration->GetFillState().GetHref(); in CreateRender() local 54 if (!href.empty()) { in CreateRender() 55 auto gradient = GetGradient(href); in CreateRender()
|
H A D | svg_use.cpp | 62 auto href = declaration->GetFillState().GetHref(); in CreateRender() local 63 if (!href.empty()) { in CreateRender() 64 auto gradient = GetGradient(href); in CreateRender()
|
H A D | svg_svg.cpp | 52 auto href = declaration->GetFillState().GetHref(); in CreateRender() local 53 if (!href.empty()) { in CreateRender() 54 auto gradient = GetGradient(href); in CreateRender()
|
H A D | svg_ellipse.cpp | 48 auto href = declaration->GetFillState().GetHref(); in CreateRender() local 49 if (!href.empty()) { in CreateRender() 50 auto gradient = GetGradient(href); in CreateRender()
|
H A D | svg_rect.cpp | 47 auto href = declaration->GetFillState().GetHref(); in CreateRender() local 48 if (!href.empty()) { in CreateRender() 49 auto gradient = GetGradient(href); in CreateRender()
|
H A D | svg_node.h | 95 std::optional<Gradient> GetGradient(const std::string& href); 105 std::string AsClipPathCommands(const Size& viewPort, const std::string& href) const;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/svg/ |
H A D | svg_image_declaration.h | 28 std::string href = ""; member 88 void SetHref(const std::string& href) in SetHref() argument 91 attrs.href = href; in SetHref() 97 return attribute.href; in GetHref()
|
H A D | svg_base_declaration.h | 37 std::string href; member 146 void SetHref(const std::string& href) in SetHref() argument 149 attribute.href = href; in SetHref() 155 return attribute.href; in GetHref()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/svg/parse/ |
H A D | svg_image.cpp | 33 if (imageAttr_.href.empty()) { in OnDraw() 47 auto srcType = ParseHrefAttr(imageAttr_.href); in OnDraw() 51 data = LoadBase64Image(imageAttr_.href); in OnDraw() 54 data = LoadLocalImage(imageAttr_.href); in OnDraw() 175 attr.href = val; in ParseAndSetSpecializedAttr() 187 attr.href = val; in ParseAndSetSpecializedAttr()
|
H A D | svg_use.cpp | 43 if (attributes_.href.empty()) { in AsPath() 47 auto refSvgNode = svgContext->GetSvgNodeById(attributes_.href); in AsPath() 59 if (attributes_.href.empty()) { in OnDraw() 62 auto refSvgNode = svgContext->GetSvgNodeById(attributes_.href); in OnDraw()
|
/ohos5.0/docs/zh-cn/device-dev/subsystems/ |
H A D | subsys-ota-guide.md | 25 <a href="#ab-升级场景">AB 升级</a>:是 OTA 升级的一个场景,原理是设备有一套备份的B系统,在A系统运行时,可以在正常使用的状态下,静默更新B系统,升级成功后,重启切换新系统… 51 <a href="#生成公私钥对">1. 使用OpenSSL工具生成公私钥对</a> 53 <a href="#制作升级包">2. 使用升级包制作工具制作升级包</a> 55   <a href="#轻量与小型系统升级包制作">2.1 轻量与小型系统升级包</a> 57   <a href="#标准系统升级包制作">2.2 标准系统升级包</a> 59 <a href="#上传升级包">3. 将升级包上传到厂商的OTA服务器</a> 61 <a href="#下载升级包">4. 厂商应用从OTA服务器下载升级包</a> 63 <a href="#厂商应用集成ota能力">5. 厂商应用集成OTA能力</a> 65   <a href="#api-应用默认场景">5.1 API 应用默认场景</a> 67   <a href="#api-应用定制场景">5.2 API 应用定制场景</a> [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/ |
H A D | svg_paint_state.h | 134 void SetHref(const std::string& href) in SetHref() argument 136 href_ = href; in SetHref() 362 void SetHref(const std::string& href) in SetHref() argument 364 href_ = href; in SetHref() 530 void SetHref(const std::string& href, bool isSelf = true) 532 href_ = href;
|
/ohos5.0/docs/zh-cn/contribute/ |
H A D | 社区沟通与交流.md | 38 …a>OpenHarmony</span><span>社区开发讨论邮件列表,任何社区开发相关话题都可以在邮件列表讨论。任何开发者可</span><a href="https://lists.open… 45 …<a name="text174641244154914"></a>OpenHarmony</span>社区CICD构建邮件列表,任何开发者可<a href="https://lists.open… 52 …name="p1571612525573"></a><a name="p1571612525573"></a>PMC讨论邮件列表,PMC成员可<a href="https://lists.open… 66 …19183319584"></a><a name="p17119183319584"></a>安全组成员安全问题处理讨论邮件列表,安全组成员可<a href="https://lists.open…
|
/ohos5.0/docs/zh-cn/application-dev/web/ |
H A D | web-redirection-and-browsing-history-mgmt.md | 93 <a href="native://pages/ProfilePage">个人中心</a> 169 <a href="tel://xxx xxxx xxx">拨打电话</a>
|
H A D | web-scheme-handler.md | 676 <a href="https://www.example.com/video.html">拦截视频资源请求,读取本地mp4文件</a><br/> 677 <a href="https://www.example.com/csp_bypassing.html">测试三方协议忽略csp检查,并成功拦截</a><br/> 678 <a href="https://www.example.com/isolated.html">测试拦截设置ISOLATED属性的三方协议</a><br/> 679 <a href="https://www.example.com/local.html">测试拦截设置LOCAL属性的三方协议</a><br/> 680 <a href="https://www.example.com/service_worker.html">测试拦截service worker触发的请求</a><br/> 681 <a href="https://www.example.com/post_data.html">测试读取blob类型http body stream</a><br/> 682 <a href="https://www.example.com/chunked_post_stream.html">测试读取chunked类型http body stream</a>
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/svg/ |
H A D | parse_testtwo_ng.cpp | 601 svgUse->attributes_.href = ""; 603 EXPECT_TRUE(svgUse->attributes_.href.empty()); 630 EXPECT_STREQ(imageDeclaration.href.c_str(), IMAGE_HREF.c_str()); 801 EXPECT_NE(svgNode->GetBaseAttributes().href, "test_xlink:href"); 879 std::string href = "svgNodeTest"; variable 881 baseAttr.fillState.SetHref(href); 884 svgContext->Push(href, svgAnimateNode);
|
/ohos5.0/docs/en/device-dev/subsystems/ |
H A D | subsys-ota-guide.md | 25 <a href="#ab-update">A/B Update</a>: a typical application of OTA update. In this update mode, a de… 51 <a href="#generating-a-public/private-key-pair">1. Use the OpenSSL tool to generate a public/privat… 53 <a href="#making-an-update-package">2. Use the packaging tool to generate an update package.</a> 55   <a href="#mini-and-small systems">2.1 Mini and small systems</a> 57   <a href="#standard system">2.2 Standard system</a> 59 <a href="#uploading-the-update package">3. Upload the update package to the vendor's OTA server.</a> 61 <a href="#downloading-the-update-package">4. Download the update package from the vendor's OTA serv… 63 <a href="#integrating-the-OTA-update-capability">5. Integrate the OTA update capability. 65   <a href="#api-application-scenario-default">5.1 API application scenario (default)</a> 67   <a href="#api-application-scenario-custom">5.2 API application scenario (custom)</a> [all …]
|
/ohos5.0/docs/zh-cn/application-dev/reference/apis-arkui/arkui-ts/ |
H A D | ts-basic-svg.md | 76 | \<image\> | 用于图像显示 | x:图像x轴偏移;<br> y:图像y轴偏移;<br> width:图像宽;<br> height:图像高;<br> href:目标图片(支持:jpg、… 96 | \<use\> | 复用已有元素 | x:x轴偏移分量;<br> y:y轴偏移分量;href:目标元素 | fill、fill-rule、fill-opacity、stroke、stroke-d…
|
/ohos5.0/docs/zh-cn/application-dev/arkts-utils/ |
H A D | xml-overview.md | 30 <?xml-stylesheet type="text/css" href="style.css"?>
|