/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/src/ |
H A D | ArkClassDefine.ts | 998 blendApplyType: number; 1001 this.blendApplyType = undefined; 1004 … return (this.blendMode === another.blendMode) && (this.blendApplyType === another.blendApplyType);
|
H A D | ArkComponent.ts | 1578 …INativeModule().common.setAdvancedBlendMode(node, this.value.blendMode, this.value.blendApplyType); 1592 … getUINativeModule().common.setBlendMode(node, this.value.blendMode, this.value.blendApplyType); 4495 blendMode(blendMode: BlendMode, blendApplyType?: BlendApplyType): this { 4498 arkBlendMode.blendApplyType = blendApplyType; 4503 advancedBlendMode(blendMode: BlendMode, blendApplyType?: BlendApplyType): this { 4506 arkBlendMode.blendApplyType = blendApplyType;
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/drawable/ |
H A D | rs_property_drawable_utils.h | 71 static bool IsDangerousBlendMode(int blendMode, int blendApplyType);
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/property/ |
H A D | rs_properties_painter.h | 70 static bool IsDangerousBlendMode(int blendMode, int blendApplyType);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | view_abstract_model_ng.h | 845 void SetBlendApplyType(BlendApplyType blendApplyType) override in SetBlendApplyType() argument 847 ViewAbstract::SetBlendApplyType(blendApplyType); in SetBlendApplyType() 1456 static void SetBlendApplyType(FrameNode* frameNode, BlendApplyType blendApplyType) in SetBlendApplyType() argument 1458 ViewAbstract::SetBlendApplyType(frameNode, blendApplyType); in SetBlendApplyType()
|
H A D | view_abstract.h | 212 static void SetBlendApplyType(BlendApplyType blendApplyType); 612 static void SetBlendApplyType(FrameNode* frameNode, BlendApplyType blendApplyType);
|
H A D | view_abstract_model.h | 242 virtual void SetBlendApplyType(BlendApplyType blendApplyType) = 0;
|
H A D | view_abstract.cpp | 2212 void ViewAbstract::SetBlendApplyType(BlendApplyType blendApplyType) in SetBlendApplyType() argument 2217 ACE_UPDATE_RENDER_CONTEXT(BackBlendApplyType, blendApplyType); in SetBlendApplyType() 3796 void ViewAbstract::SetBlendApplyType(FrameNode* frameNode, BlendApplyType blendApplyType) in SetBlendApplyType() argument 3798 ACE_UPDATE_NODE_RENDER_CONTEXT(BackBlendApplyType, blendApplyType, frameNode); in SetBlendApplyType()
|
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/base/ |
H A D | view_abstract_test_ng.cpp | 186 BlendApplyType blendApplyType = BlendApplyType::FAST; variable 187 ViewAbstract::SetBlendApplyType(blendApplyType); 188 ViewAbstract::SetBlendApplyType(AceType::RawPtr(FRAME_NODE_REGISTER), blendApplyType); 272 BlendApplyType blendApplyType = BlendApplyType::FAST; variable 273 ViewAbstract::SetBlendApplyType(blendApplyType);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | view_abstract_model_impl.h | 168 void SetBlendApplyType(BlendApplyType blendApplyType) override;
|
H A D | view_abstract_model_impl.cpp | 967 void ViewAbstractModelImpl::SetBlendApplyType(BlendApplyType blendApplyType) in SetBlendApplyType() argument 970 backDecoration->SetBlendApplyType(blendApplyType); in SetBlendApplyType()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/drawable/ |
H A D | rs_property_drawable_utils.cpp | 1043 bool RSPropertyDrawableUtils::IsDangerousBlendMode(int blendMode, int blendApplyType) in IsDangerousBlendMode() argument 1061 if (blendApplyType == static_cast<int>(RSColorBlendApplyType::FAST)) { in IsDangerousBlendMode()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/ |
H A D | render_context.h | 808 virtual void OnBackBlendApplyTypeUpdate(BlendApplyType blendApplyType) {} in OnBackBlendApplyTypeUpdate() argument
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_view_abstract.cpp | 7008 BlendApplyType blendApplyType = BlendApplyType::FAST; in JsBlendMode() local 7021 blendApplyType = BlendApplyType::OFFSCREEN; in JsBlendMode() 7025 blendApplyType = BlendApplyType::OFFSCREEN; in JsBlendMode() 7029 blendApplyType = BlendApplyType::OFFSCREEN; in JsBlendMode() 7037 blendApplyType = static_cast<BlendApplyType>(blendApplyTypeNum); in JsBlendMode() 7041 ViewAbstractModel::GetInstance()->SetBlendApplyType(blendApplyType); in JsBlendMode() 7050 BlendApplyType blendApplyType = BlendApplyType::FAST; in JsAdvancedBlendMode() local 7063 blendApplyType = BlendApplyType::OFFSCREEN; in JsAdvancedBlendMode() 7067 blendApplyType = BlendApplyType::OFFSCREEN; in JsAdvancedBlendMode() 7071 blendApplyType = BlendApplyType::OFFSCREEN; in JsAdvancedBlendMode() [all …]
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/property/ |
H A D | rs_properties_painter.cpp | 1917 bool RSPropertiesPainter::IsDangerousBlendMode(int blendMode, int blendApplyType) in IsDangerousBlendMode() argument 1935 if (blendApplyType == static_cast<int>(RSColorBlendApplyType::FAST)) { in IsDangerousBlendMode()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/ |
H A D | arkComponent.js | 1436 … getUINativeModule().common.setBlendMode(node, this.value.blendMode, this.value.blendApplyType); 1449 …INativeModule().common.setAdvancedBlendMode(node, this.value.blendMode, this.value.blendApplyType); 4276 blendMode(blendMode, blendApplyType) { argument 4279 arkBlendMode.blendApplyType = blendApplyType; 4283 advancedBlendMode(blendMode, blendApplyType) { argument 4286 arkBlendMode.blendApplyType = blendApplyType; 16004 this.blendApplyType = undefined; 16007 … return (this.blendMode === another.blendMode) && (this.blendApplyType === another.blendApplyType);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/ark_component/export/ |
H A D | arkComponent.d.ts | 220 blendMode(blendMode: BlendMode, blendApplyType?: BlendApplyType): this;
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | rosen_render_context.cpp | 4181 void RosenRenderContext::OnBackBlendApplyTypeUpdate(BlendApplyType blendApplyType) argument 4184 auto rsBlendApplyType = static_cast<Rosen::RSColorBlendApplyType>(blendApplyType);
|
/ohos5.0/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | style_modifier.cpp | 2843 int blendApplyType = NUM_0; in SetBlendMode() local 2845 blendApplyType = item->value[1].i32; in SetBlendMode() 2847 …tNodeModifiers()->getCommonModifier()->setBlendMode(node->uiNodeHandle, blendMode, blendApplyType); in SetBlendMode() 2862 g_numberValues[NUM_1].i32 = options.blendApplyType; in GetBlendMode()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/ |
H A D | arkoala_api.h | 638 ArkUI_Int32 blendApplyType; member
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_common_modifier.cpp | 5323 options->blendApplyType = static_cast<ArkUI_Int32>(ViewAbstract::GetBlendApplyType(frameNode)); in GetBlendMode()
|