Home
last modified time | relevance | path

Searched refs:parentPosition (Results 1 – 12 of 12) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dframe_node_modifier.cpp274 void GetPositionToParentWithTransform(ArkUINodeHandle node, ArkUI_Float32 (*parentPosition)[2], Ark… in GetPositionToParentWithTransform()
280 (*parentPosition)[0] = PipelineBase::Px2VpWithCurrentDensity(offset.GetX()); in GetPositionToParentWithTransform()
281 (*parentPosition)[1] = PipelineBase::Px2VpWithCurrentDensity(offset.GetY()); in GetPositionToParentWithTransform()
283 (*parentPosition)[0] = offset.GetX(); in GetPositionToParentWithTransform()
284 (*parentPosition)[1] = offset.GetY(); in GetPositionToParentWithTransform()
/ohos5.0/foundation/graphic/graphic_2d/rosen/test/render_service/render_service_base/unittest/property/
H A Drs_properties_test.cpp1278 std::optional<Vector2f> parentPosition = *newVect; variable
1279 properties.SetSandBox(parentPosition);
1297 std::optional<Vector2f> parentPosition = *newVect; variable
1298 properties.SetSandBox(parentPosition);
1301 properties.SetSandBox(parentPosition);
1319 std::optional<Vector2f> parentPosition = *newVect; variable
1320 properties.SetSandBox(parentPosition);
3160 std::optional<Vector2f> parentPosition = *newVect; variable
3161 properties.SetGreyCoef(parentPosition);
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_frame_node_bridge.cpp1011 ArkUI_Float32 parentPosition[2]; in GetPositionToParentWithTransform() local
1013 nativeNode, &parentPosition, true); in GetPositionToParentWithTransform()
1014 CHECK_NULL_RETURN(parentPosition, panda::JSValueRef::Undefined(vm)); in GetPositionToParentWithTransform()
1015 … Framework::ArrayRef::SetValueAt(vm, valueArray, 0, panda::NumberRef::New(vm, parentPosition[0])); in GetPositionToParentWithTransform()
1016 … Framework::ArrayRef::SetValueAt(vm, valueArray, 1, panda::NumberRef::New(vm, parentPosition[1])); in GetPositionToParentWithTransform()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/property/
H A Drs_properties.h99 void SetSandBox(const std::optional<Vector2f>& parentPosition);
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_client/core/ui/
H A Drs_node.h204 void SetSandBox(std::optional<Vector2f> parentPosition);
H A Drs_node.cpp739 void RSNode::SetSandBox(std::optional<Vector2f> parentPosition) in SetSandBox() argument
741 if (!parentPosition.has_value()) { in SetSandBox()
750 …SSandBoxModifier, RSAnimatableProperty<Vector2f>>(RSModifierType::SANDBOX, parentPosition.value()); in SetSandBox()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/
H A Drender_context.h142 virtual void SetSandBox(const std::optional<OffsetF>& parentPosition, bool force = false) {};
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/
H A Drosen_render_context.h102 void SetSandBox(const std::optional<OffsetF>& parentPosition, bool force = false) override;
H A Drosen_render_context.cpp503 void RosenRenderContext::SetSandBox(const std::optional<OffsetF>& parentPosition, bool force) in SetSandBox() argument
508 if (parentPosition.has_value()) { in SetSandBox()
512 Rosen::Vector2f value = { parentPosition.value().GetX(), parentPosition.value().GetY() }; in SetSandBox()
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/property/
H A Drs_properties.cpp506 void RSProperties::SetSandBox(const std::optional<Vector2f>& parentPosition) in SetSandBox() argument
511 sandbox_->position_ = parentPosition; in SetSandBox()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/cjui/
H A Dcjui_api.h2989 ArkUINodeHandle node, ArkUI_Float32 (*parentPosition)[2], ArkUI_Bool useVp);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/arkoala/
H A Darkoala_api.h4804 ArkUINodeHandle node, ArkUI_Float32 (*parentPosition)[2], ArkUI_Bool useVp);