Home
last modified time | relevance | path

Searched defs:y (Results 1 – 25 of 318) sorted by relevance

12345678910>>...13

/foundation/ace/ace_engine/frameworks/base/geometry/
Dpoint.h30 Point(double x, double y) : x_(x), y_(y) {} in Point()
31 Point(double x, double y, SourceType sourceType) : x_(x), y_(y), sourceType_(sourceType) {} in Point()
48 void SetY(double y) in SetY()
66 …double y = (x_ - center.GetX()) * std::sin(angle) + (y_ - center.GetY()) * std::cos(angle) + cente… in Rotate() local
Dquaternion.h24 Quaternion(double x, double y, double z, double w) : x_(x), y_(y), z_(z), w_(w) {} in Quaternion()
47 void SetY(double y) in SetY()
63 auto y = this->y_ + q.y_; variable
72 auto y = w_ * q.y_ - x_ * q.z_ + y_ * q.w_ + z_ * q.x_; variable
/foundation/ace/ace_engine/frameworks/core/pipeline/layers/
Doffset_layer.h29 OffsetLayer(double x, double y) : x_(x), y_(y) {} in OffsetLayer()
32 void SetOffset(double x, double y) in SetOffset()
38 void SetStaticOffset(double x, double y) in SetStaticOffset()
Dcontainer_layer.cpp22 void ContainerLayer::AddToScene(SceneBuilder& builder, double x, double y) in AddToScene()
27 void ContainerLayer::AddChildToScene(SceneBuilder& builder, double x, double y) in AddChildToScene()
/foundation/ace/ace_engine/frameworks/core/components/common/properties/
Dradius.h31 Radius(double x, double y) : x_(Dimension(x)), y_(Dimension(y)) {} in Radius()
32 Radius(const Dimension& x, const Dimension& y) : x_(x), y_(y) {}; in Radius()
33 Radius(const AnimatableDimension& x, const AnimatableDimension& y) : x_(x), y_(y) {}; in Radius()
83 void SetY(const AnimatableDimension& y) in SetY()
/foundation/graphic/standard/rosen/modules/2d_graphics/include/utils/
Dpoint.h66 inline PointF::PointF(scalar x, scalar y) noexcept : x_(x), y_(y) {} in PointF()
83 inline void PointF::SetY(scalar y) in SetY()
202 inline PointI::PointI(int x, int y) noexcept : x_(x), y_(y) {} in PointI()
219 inline void PointI::SetY(int y) in SetY()
Dpoint3.h65 inline Point3::Point3(scalar x, scalar y, scalar z) noexcept : x_(x), y_(y), z_(z) {} in Point3()
87 inline void Point3::SetY(scalar y) in SetY()
/foundation/ace/ace_engine/frameworks/core/components/test/unittest/mock/
Dtransform_mock.cpp30 void RenderTransform::Translate(const Dimension& x, const Dimension& y, const Dimension& z) {} in Translate()
32 void RenderTransform::Scale(float x, float y, float z) {} in Scale()
34 void RenderTransform::Skew(float x, float y) {}; in Skew()
45 void RenderTransform::Translate(const Dimension& x, const Dimension& y) in Translate()
63 void RenderTransform::Scale(float x, float y) in Scale()
72 void RenderTransform::Rotate(float angle, float x, float y, float z) in Rotate()
176 void MockRenderTransform::MockTranslate(Dimension x, Dimension y) in MockTranslate()
189 void MockRenderTransform::MockScale(float x, float y) in MockScale()
196 void MockRenderTransform::MockRotate(float angle, float x, float y, float z) in MockRotate()
241 void MockRenderTransform::GetRotateSetting(float& angle, float& x, float& y, float& z) const in GetRotateSetting()
/foundation/graphic/standard/rosen/modules/render_service_base/include/common/
Drs_common_def.h83 inline bool ROSEN_EQ(const T& x, const T& y) in ROSEN_EQ()
89 inline bool ROSEN_EQ(const float& x, const float& y) in ROSEN_EQ()
95 inline bool ROSEN_EQ(const double& x, const double& y) in ROSEN_EQ()
101 inline bool ROSEN_EQ(const long double& x, const long double& y) in ROSEN_EQ()
107 inline bool ROSEN_EQ(T x, T y, T epsilon) in ROSEN_EQ()
113 inline bool ROSEN_EQ(const std::weak_ptr<T>& x, const std::weak_ptr<T>& y) in ROSEN_EQ()
Drs_obj_geometry.h58 void SetY(float y) in SetY()
82 void SetPosition(float x, float y) in SetPosition()
92 void SetRect(float x, float y, float w, float h) in SetRect()
106 void SetPivotY(float y) in SetPivotY()
115 void SetPivot(float x, float y) in SetPivot()
129 void SetScaleY(float y) in SetScaleY()
138 void SetScale(float x, float y) in SetScale()
Drs_vector3.h79 Vector3<T>::Vector3(T x, T y, T z) in Vector3()
120 T y = data_[1]; in Cross() local
135 T y = data_[1]; in GetSqrLength() local
153 void Vector3<T>::SetValues(T x, T y, T z) in SetValues()
/foundation/ace/ace_engine/frameworks/core/components/transform/
Dtransform_component.cpp33 void TransformComponent::Translate(const Dimension& x, const Dimension& y, const AnimationOption& a… in Translate()
39 …const Dimension& x, const Dimension& y, const Dimension& z, const AnimationOption& animationOption) in Translate()
52 void TransformComponent::TranslateY(const Dimension& y, const AnimationOption& animationOption) in TranslateY()
68 void TransformComponent::Scale(float x, float y, const AnimationOption& animationOption) in Scale()
73 void TransformComponent::Scale(float x, float y, float z, const AnimationOption& animationOption) in Scale()
86 void TransformComponent::ScaleY(float y, const AnimationOption& animationOption) in ScaleY()
171 void TransformComponent::SetRotateTransition(TransitionType type, double x, double y, double z, dou… in SetRotateTransition()
194 TransitionType type, const Dimension& x, const Dimension& y, const Dimension& z) in SetTranslateTransition()
216 void TransformComponent::SetScaleTransition(TransitionType type, float x, float y, float z) in SetScaleTransition()
/foundation/graphic/ui/frameworks/components/
Dui_surface_view.cpp46 void UISurfaceView::SetPosition(int16_t x, int16_t y) in SetPosition()
59 void UISurfaceView::SetPosition(int16_t x, int16_t y, int16_t width, int16_t height) in SetPosition()
116 void UISurfaceView::SetY(int16_t y) in SetY()
/foundation/communication/dsoftbus/components/nstackx/fillp/src/public/src/
Drb_tree.c27 struct RbNode *y = x->rbRight; in FillpRbRotateLeft() local
60 struct RbNode *y = x->rbLeft; in FillpRbRotateRight() local
115 struct RbNode *y = x->rbParent->rbParent->rbRight; in FillpRbInsertColor() local
133 struct RbNode *y = x->rbParent->rbParent->rbLeft; in FillpRbInsertColor() local
/foundation/graphic/ui/test/uitest/test_animator/
Dui_test_animator.cpp61 uint16_t y = uiViewGroupFrame_->GetY() + uiViewGroupFrame_->GetHeight() + 20; in SetUp() local
93 void UITestAnimator::SetUpLabel(const char* title, int16_t x, int16_t y) in SetUpLabel()
100 void UITestAnimator::SetUpButton(UILabelButton* btn, const char* title, int16_t x, int16_t y) in SetUpButton()
/foundation/ace/ace_engine/frameworks/core/components/triangle/
Drender_triangle.h28 void SetPointOne(double x, double y) in SetPointOne()
34 void SetPointTwo(double x, double y) in SetPointTwo()
40 void SetPointThree(double x, double y) in SetPointThree()
/foundation/graphic/ui/test/uitest/test_clip/
Dui_test_clip.cpp140 void UITestClip::SetUpButton(UILabelButton* btn, const char* title, int16_t x, int16_t y) in SetUpButton()
173 int16_t y = positionY_; in UIKitClipTest001() local
209 int16_t y = positionY_; in UIKitClipTest002() local
244 int32_t y = 50; in UIKitClipTest003() local
/foundation/graphic/standard/frameworks/wm/src/
Dwl_surface.cpp56 void WlSurface::Attach(sptr<WlBuffer> &buffer, int32_t x, int32_t y) in Attach()
61 void WlSurface::Damage(int32_t x, int32_t y, uint32_t w, uint32_t h) in Damage()
104 wl_fixed_t y = wl_fixed_from_double(dy); in SetSource() local
/foundation/graphic/standard/rosen/test/render_service/render_service_base/unittest/render/
Drs_mask_test.cpp82 double y = 0.0f; variable
144 double y = 0.0f; variable
171 double y = 0.0f; variable
/foundation/ace/napi/sample/native_module_calc/
Dcalc.js20 function sub(x, y) argument
/foundation/graphic/standard/frameworks/wmtest/test/
Dwmclient_native_test_22.cpp57 void OnWin1TouchMotion(double x, double y) in OnWin1TouchMotion()
103 void OnWin2TouchDown(double x, double y) in OnWin2TouchDown()
115 void OnWin3TouchDown(double x, double y) in OnWin3TouchDown()
/foundation/graphic/utils/frameworks/
Dgraphic_math.cpp61 uint16_t FastAtan2(int16_t x, int16_t y) in FastAtan2()
101 float y = *(float*)&i; in Sqrt() local
/foundation/graphic/standard/rosen/modules/2d_graphics/src/engine_adapter/skia_adapter/
Dskia_camera.cpp33 void SkiaCamera::Translate(scalar x, scalar y, scalar z) in Translate()
53 void SkiaCamera::SetCameraPos(scalar x, scalar y, scalar z) in SetCameraPos()
/foundation/graphic/ui/interfaces/kits/components/
Dui_circle_progress.h210 void SetProgressImagePosition(int16_t x, int16_t y) in SetProgressImagePosition()
225 void SetBackgroundImagePosition(int16_t x, int16_t y) in SetBackgroundImagePosition()
/foundation/graphic/standard/rosen/modules/2d_graphics/src/utils/
Dcamera3d.cpp36 void Camera3D::Translate(scalar x, scalar y, scalar z) in Translate()
56 void Camera3D::SetCameraPos(scalar x, scalar y, scalar z) in SetCameraPos()

12345678910>>...13