Home
last modified time | relevance | path

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

12345678910>>...35

/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/include/utils/
H A Dpoint.h73 inline PointF::PointF(scalar x, scalar y) noexcept : x_(x), y_(y) {} in PointF()
90 inline void PointF::SetY(scalar y) in SetY()
95 inline void PointF::Set(scalar x, scalar y) in Set()
106 inline void PointF::Offset(scalar x, scalar y) in Offset()
230 inline PointI::PointI(int x, int y) noexcept : x_(x), y_(y) {} in PointI()
247 inline void PointI::SetY(int y) in SetY()
252 inline void PointI::Set(int x, int y) in Set()
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/geometry/
H A 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()
32 …Point(double x, double y, double screenX, double screenY) : x_(x), y_(y), screenX_(screenX), scree… in Point()
33 Point(double x, double y, double screenX, double screenY, SourceType sourceType) in Point()
52 void SetY(double y) in SetY()
72 void SetScreenY(double y) in SetScreenY()
90 …double y = (x_ - center.GetX()) * std::sin(angle) + (y_ - center.GetY()) * std::cos(angle) + cente… in Rotate() local
H A Dquaternion.h26 Quaternion(double x, double y, double z, double w) : x_(x), y_(y), z_(z), w_(w) {} in Quaternion()
49 void SetY(double y) in SetY()
65 auto y = this->y_ + q.y_; variable
74 auto y = w_ * q.y_ - x_ * q.z_ + y_ * q.w_ + z_ * q.x_; variable
/ohos5.0/foundation/graphic/graphic_utils_lite/interfaces/kits/gfx_utils/diagram/vertexprimitive/
H A Dgeometry_path_storage.h50 float y; variable
107 void AddVertex(float x, float y, uint32_t cmd) in AddVertex()
136 uint32_t LastVertex(float* x, float* y) const in LastVertex()
162 uint32_t GenerateVertex(uint32_t idx, float* x, float* y) const in GenerateVertex()
267 void MoveTo(float x, float y) in MoveTo()
278 void LineTo(float x, float y) in LineTo()
308 float x, float y) in ArcTo()
374 uint32_t LastVertex(float* x, float* y) const in LastVertex()
408 uint32_t GenerateVertex(float* x, float* y) in GenerateVertex()
426 float y; variable
[all …]
/ohos5.0/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/engine/control/
H A DXButton.js19 constructor(x, y, w, h, name) { argument
31 move(x, y, w, h) { argument
67 isTouchInButton(x, y) { argument
82 procTouch(msg, x, y) { argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/render_service_base/include/common/
H A Drs_obj_geometry.h59 void SetY(float y) in SetY()
75 void SetPosition(float x, float y) in SetPosition()
85 void SetRect(float x, float y, float w, float h) in SetRect()
97 void SetPivotY(float y) in SetPivotY()
111 void SetPivot(float x, float y) in SetPivot()
123 void SetScaleY(float y) in SetScaleY()
130 void SetScale(float x, float y) in SetScale()
142 void SetSkewY(float y) in SetSkewY()
149 void SetSkew(float x, float y) in SetSkew()
161 void SetPerspY(float y) in SetPerspY()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/
H A Dcanvas_path.cpp51 void NativeCanvasPath::MoveTo(double x, double y) in MoveTo()
56 void NativeCanvasPath::LineTo(double x, double y) in LineTo()
61 void NativeCanvasPath::Arc(double x, double y, double radius, double startAngle, double endAngle, b… in Arc()
71 void NativeCanvasPath::QuadraticCurveTo(double cpx, double cpy, double x, double y) in QuadraticCurveTo()
76 …veCanvasPath::BezierCurveTo(double cp1x, double cp1y, double cp2x, double cp2y, double x, double y) in BezierCurveTo()
81 void NativeCanvasPath::Ellipse(double x, double y, double radiusX, double radiusY, double rotation,… in Ellipse()
87 void NativeCanvasPath::Rect(double x, double y, double width, double height) in Rect()
/ohos5.0/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/hcs/
H A DCanvasInput.js20 static SetSafeArea(x, y, w, h) { argument
23 static Reset(x, y, w, h, value, cb, cb2) { argument
54 static Hide(x, y) { argument
/ohos5.0/foundation/graphic/graphic_utils_lite/frameworks/diagram/rasterizer/
H A Drasterizer_scanline_antialias.cpp136 void RasterizerScanlineAntialias::MoveTo(int32_t x, int32_t y) in MoveTo()
149 void RasterizerScanlineAntialias::LineTo(int32_t x, int32_t y) in LineTo()
155 void RasterizerScanlineAntialias::MoveToByfloat(float x, float y) in MoveToByfloat()
168 void RasterizerScanlineAntialias::LineToByfloat(float x, float y) in LineToByfloat()
174 void RasterizerScanlineAntialias::AddVertex(float x, float y, uint32_t cmd) in AddVertex()
/ohos5.0/foundation/arkui/ui_lite/frameworks/render/
H A Drender_base.cpp60 for (uint32_t y = 0; y < GetHeight(); y++) { in Clear() local
66 void RenderBase::BlendHLine(int32_t x1, int32_t y, int32_t x2, const Rgba8T& color, uint8_t cover) in BlendHLine()
86 void RenderBase::BlendSolidHSpan(int32_t x, int32_t y, int32_t len, const Rgba8T& color, const uint… in BlendSolidHSpan()
108 void RenderBase::CopyColorHSpan(int32_t x, int32_t y, int32_t len, const Rgba8T* colors) in CopyColorHSpan()
117 void RenderBase::BlendColorHSpan(int32_t x, int32_t y, int32_t len, const Rgba8T* colors, const uin… in BlendColorHSpan()
126 bool RenderBase::ColorHSpanHandler(int32_t& x, const int32_t& y, int32_t& len, const Rgba8T*& color… in ColorHSpanHandler()
H A Drender_pixfmt_rgba_blend.h259 virtual inline uint8_t* GetRowPtr(int32_t y) in GetRowPtr()
270 virtual inline const uint8_t* GetRowPtr(int32_t y) const in GetRowPtr()
281 virtual inline RowData GetRow(int32_t y) const in GetRow()
286 virtual inline uint8_t* PixPtr(int32_t x, int32_t y) in PixPtr()
291 virtual inline const uint8_t* PixPtr(int32_t x, int32_t y) const in PixPtr()
302 virtual inline PixelColorType* PixValuePtr(int32_t x, int32_t y) in PixValuePtr()
313 virtual inline const PixelColorType* PixValuePtr(int32_t x, int32_t y) const in PixValuePtr()
347 virtual inline Rgba8T Pixel(int32_t x, int32_t y) const in Pixel()
362 virtual inline void CopyPixel(int32_t x, int32_t y, const Rgba8T& color) in CopyPixel()
373 virtual inline void BlendPixel(int32_t x, int32_t y, const Rgba8T& color, uint8_t cover) in BlendPixel()
H A Drender_pixfmt_rgba_blend.cpp31 void RenderPixfmtRgbaBlend::CopyHLine(int32_t x, int32_t y, in CopyHLine()
54 void RenderPixfmtRgbaBlend::BlendHLine(int32_t x, int32_t y, in BlendHLine()
92 void RenderPixfmtRgbaBlend::BlendSolidHSpan(int32_t x, int32_t y, in BlendSolidHSpan()
122 void RenderPixfmtRgbaBlend::BlendSolidVSpan(int32_t x, int32_t y, in BlendSolidVSpan()
140 void RenderPixfmtRgbaBlend::CopyColorHSpan(int32_t x, int32_t y, in CopyColorHSpan()
167 void RenderPixfmtRgbaBlend::CopyColorVSpan(int32_t x, int32_t y, in CopyColorVSpan()
176 void RenderPixfmtRgbaBlend::BlendColorHSpan(int32_t x, int32_t y, in BlendColorHSpan()
H A Drender_buffer.h106 uint8_t* GetRowPtr(int32_t y) in GetRowPtr()
114 const uint8_t* GetRowPtr(int32_t y) const in GetRowPtr()
122 RowData GetRow(int32_t y) const in GetRow()
/ohos5.0/foundation/graphic/graphic_3d/lume/LumeBase/api/base/math/
H A Dvector.h40 float y; in BASE_BEGIN_NAMESPACE() member
197 float y; in BASE_BEGIN_NAMESPACE() member
271 float y; in BASE_BEGIN_NAMESPACE() member
344 uint32_t y; in BASE_BEGIN_NAMESPACE() member
493 uint32_t y; in BASE_BEGIN_NAMESPACE() member
551 uint32_t y; in BASE_BEGIN_NAMESPACE() member
612 int32_t y; in BASE_BEGIN_NAMESPACE() member
761 int32_t y; in BASE_BEGIN_NAMESPACE() member
819 int32_t y; in BASE_BEGIN_NAMESPACE() member
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/common/properties/
H A 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()
/ohos5.0/foundation/arkui/ace_engine/frameworks/base/geometry/ng/
H A Dpoint_t.h29 PointT(T x, T y) : x_(x), y_(y) {} in PointT()
46 void SetY(T y) in SetY()
54 …T y = (x_ - center.GetX()) * std::sin(angle) + (y_ - center.GetY()) * std::cos(angle) + center.Get… in Rotate() local
H A Dradius.h27 Radius(double x, double y) : x_(Dimension(x)), y_(Dimension(y)) {} in Radius()
28 Radius(const Dimension& x, const Dimension& y) : x_(x), y_(y) {} in Radius()
57 void SetY(const Dimension& y) in SetY()
/ohos5.0/foundation/graphic/graphic_2d/rosen/samples/webgl/entry/src/main/js/MainAbility/pages/index/utils/
H A DCamera.js63 eye(x, y, z) { argument
75 center(x, y, z) { argument
87 rotate(x, y, z) { argument
/ohos5.0/base/update/updater/test/unittest/test_data/ui/layout/
H A Dmenu.json20 "y" : 0, number
31 "y" : 200, number
41 "y" : 400, number
51 "y" : 600, number
61 "y" : 800, number
71 "y" : 1000, number
81 "y" : 1200, number
91 "y" : 1200, number
/ohos5.0/drivers/hdf_core/framework/tools/hcs-view/hcsWebView/src/engine/
H A DXTools.js21 static InRect(xx, yy, x, y, w, h) { argument
37 export function fAngle(x, y) { argument
40 export function iDistance(x, y) { argument
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/drawing_ndk/src/
H A Ddrawing_point.cpp36 OH_Drawing_Point* OH_Drawing_PointCreate(float x, float y) in OH_Drawing_PointCreate()
59 OH_Drawing_ErrorCode OH_Drawing_PointGetY(const OH_Drawing_Point* cPoint, float* y) in OH_Drawing_PointGetY()
69 OH_Drawing_ErrorCode OH_Drawing_PointSet(OH_Drawing_Point* cPoint, float x, float y) in OH_Drawing_PointSet()
/ohos5.0/foundation/multimedia/image_effect/interfaces/inner_api/native/utils/
H A Dformat_helper.h40 int y = (54 * r + 183 * g + 18 * b) >> 8; in RGBToY() local
56 static inline uint8_t YuvToR(uint8_t y, uint8_t u, uint8_t v) in YuvToR()
62 static inline uint8_t YuvToG(uint8_t y, uint8_t u, uint8_t v) in YuvToG()
68 static inline uint8_t YuvToB(uint8_t y, uint8_t u, uint8_t v) in YuvToB()
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/rosen/
H A Dtesting_typography.h83 virtual void Paint(TestingCanvas* canvas, double x, double y) {} in Paint()
99 …pographyProperties::PositionAndAffinity GetGlyphPositionAtCoordinateWithCluster(double x, double y) in GetGlyphPositionAtCoordinateWithCluster()
105 …virtual TestingTypographyProperties::IndexAndAffinity GetGlyphIndexByCoordinate(double x, double y) in GetGlyphIndexByCoordinate()
113 …l TestingTypographyProperties::PositionAndAffinity GetGlyphPositionAtCoordinate(double x, double y) in GetGlyphPositionAtCoordinate()
126 …tual TestingTypographyProperties::IndexAndAffinity GetGlyphPositionAtCoordinate(double x, double y) in GetGlyphPositionAtCoordinate()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/canvas/
H A Djs_canvas_path.cpp46 double y = 0.0; in JsPath2DMoveTo() local
58 double y = 0.0; in JsPath2DLineTo() local
70 double y = 0.0; in JsPath2DArc() local
106 double y = 0.0; in JsPath2DQuadraticCurveTo() local
122 double y = 0.0; in JsPath2DBezierCurveTo() local
137 double y = 0.0; in JsPath2DEllipse() local
159 double y = 0.0; in JsPath2DRect() local
/ohos5.0/foundation/multimedia/image_framework/mock/native/include/secure/
H A Dsecurec.h25 #define SECUREC_ATTRIBUTE(x, y) __attribute__((format(printf, (x), (y)))) argument
27 #define SECUREC_ATTRIBUTE(x, y) argument

12345678910>>...35