Home
last modified time | relevance | path

Searched refs:widthUnit (Results 1 – 25 of 69) sorted by relevance

123

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_circle_ffi.cpp25 void FfiOHOSAceFrameworkCircleCreate(double width, int32_t widthUnit, double height, int32_t height… in FfiOHOSAceFrameworkCircleCreate() argument
29 FfiOHOSAceFrameworkShapeSetWidth(width, widthUnit); in FfiOHOSAceFrameworkCircleCreate()
36 int64_t FfiOHOSAceFrameworkCircleInsCreate(double width, int32_t widthUnit, double height, int32_t … in FfiOHOSAceFrameworkCircleInsCreate() argument
38 OHOS::Ace::Dimension dWidth(width, static_cast<OHOS::Ace::DimensionUnit>(widthUnit)); in FfiOHOSAceFrameworkCircleInsCreate()
H A Dcj_ellipse_ffi.cpp25 void FfiOHOSAceFrameworkEllipseCreate(double width, int32_t widthUnit, double height, int32_t heigh… in FfiOHOSAceFrameworkEllipseCreate() argument
29 FfiOHOSAceFrameworkShapeSetWidth(width, widthUnit); in FfiOHOSAceFrameworkEllipseCreate()
36 int64_t FfiOHOSAceFrameworkEllipseInsCreate(double width, int32_t widthUnit, double height, int32_t… in FfiOHOSAceFrameworkEllipseInsCreate() argument
38 OHOS::Ace::Dimension dWidth(width, static_cast<OHOS::Ace::DimensionUnit>(widthUnit)); in FfiOHOSAceFrameworkEllipseInsCreate()
H A Dcj_rect_ffi.cpp29 void FfiOHOSAceFrameworkRectCreate(double width, int32_t widthUnit, double height, int32_t heightUn… in FfiOHOSAceFrameworkRectCreate() argument
33 FfiOHOSAceFrameworkShapeSetWidth(width, widthUnit); in FfiOHOSAceFrameworkRectCreate()
40 int64_t FfiOHOSAceFrameworkRectInsCreate(double width, int32_t widthUnit, double height, int32_t he… in FfiOHOSAceFrameworkRectInsCreate() argument
42 OHOS::Ace::Dimension dWidth(width, static_cast<OHOS::Ace::DimensionUnit>(widthUnit)); in FfiOHOSAceFrameworkRectInsCreate()
105 DimensionUnit widthUnit = DimensionUnit::VP; in FfiOHOSAceFrameworkRectSetRadiusTupleArray() local
109 widthUnit = static_cast<DimensionUnit>(vecWidthUnit->at(i)); in FfiOHOSAceFrameworkRectSetRadiusTupleArray()
116 Dimension width(vecWidthValue->at(i), widthUnit); in FfiOHOSAceFrameworkRectSetRadiusTupleArray()
H A Dcj_path_ffi.cpp34 double width, int32_t widthUnit, double height, int32_t heightUnit, const char* commands) in FfiOHOSAceFrameworkPathCreateWithSize() argument
38 FfiOHOSAceFrameworkShapeSetWidth(width, widthUnit); in FfiOHOSAceFrameworkPathCreateWithSize()
56 double width, int32_t widthUnit, double height, int32_t heightUnit, const char* commands) in FfiOHOSAceFrameworkPathInsCreateWithSize() argument
58 OHOS::Ace::Dimension dWidth(width, static_cast<OHOS::Ace::DimensionUnit>(widthUnit)); in FfiOHOSAceFrameworkPathInsCreateWithSize()
H A Dcj_shape_ffi.cpp159 void FfiOHOSAceFrameworkShapeSetStrokeWidth(double strokeWidth, int32_t widthUnit) in FfiOHOSAceFrameworkShapeSetStrokeWidth() argument
161 Dimension dimStrokeWidth(strokeWidth, static_cast<DimensionUnit>(widthUnit)); in FfiOHOSAceFrameworkShapeSetStrokeWidth()
192 void FfiOHOSAceFrameworkShapeSetSize(double width, int32_t widthUnit, double height, int32_t height… in FfiOHOSAceFrameworkShapeSetSize() argument
194 FfiOHOSAceFrameworkShapeSetWidth(width, widthUnit); in FfiOHOSAceFrameworkShapeSetSize()
227 int64_t shapeId, double width, int32_t widthUnit, double height, int32_t heightUnit) in FfiOHOSAceFrameworkShapeSetInsSize() argument
231 Dimension dWidth(width, static_cast<DimensionUnit>(widthUnit)); in FfiOHOSAceFrameworkShapeSetInsSize()
H A Dcj_shape_ffi.h51 CJ_EXPORT void FfiOHOSAceFrameworkShapeSetStrokeWidth(double strokeWidth, int32_t widthUnit);
56 CJ_EXPORT void FfiOHOSAceFrameworkShapeSetSize(double width, int32_t widthUnit, double height, int3…
60 int64_t shapeId, double width, int32_t widthUnit, double height, int32_t heightUnit);
H A Dcj_circle_ffi.h24 CJ_EXPORT void FfiOHOSAceFrameworkCircleCreate(double width, int32_t widthUnit, double height, int3…
26 double width, int32_t widthUnit, double height, int32_t heightUnit);
H A Dcj_ellipse_ffi.h24 CJ_EXPORT void FfiOHOSAceFrameworkEllipseCreate(double width, int32_t widthUnit, double height, int…
26 double width, int32_t widthUnit, double height, int32_t heightUnit);
H A Dcj_polygon_ffi.cpp25 void FfiOHOSAceFrameworkPolygonCreate(double width, int32_t widthUnit, double height, int32_t heigh… in FfiOHOSAceFrameworkPolygonCreate() argument
29 FfiOHOSAceFrameworkShapeSetWidth(width, widthUnit); in FfiOHOSAceFrameworkPolygonCreate()
H A Dcj_path_ffi.h26 double width, int32_t widthUnit, double height, int32_t heightUnit, const char* commands);
30 double width, int32_t widthUnit, double height, int32_t heightUnit, const char* commands);
H A Dcj_flex_ffi.cpp66 void FfiOHOSAceFrameworkFlexSetFlexSize(double width, int32_t widthUnit, double height, int32_t hei… in FfiOHOSAceFrameworkFlexSetFlexSize() argument
68 Dimension widthDime(width, static_cast<DimensionUnit>(widthUnit)); in FfiOHOSAceFrameworkFlexSetFlexSize()
70 FfiOHOSAceFrameworkViewAbstractSetWidth(width, widthUnit); in FfiOHOSAceFrameworkFlexSetFlexSize()
H A Dcj_select_ffi.cpp124 void FfiOHOSAceFrameworkSelectSetSpace(double width, int32_t widthUnit) in FfiOHOSAceFrameworkSelectSetSpace() argument
126 Dimension dimStrokeWidth(width, static_cast<DimensionUnit>(widthUnit)); in FfiOHOSAceFrameworkSelectSetSpace()
151 void FfiOHOSAceFrameworkSelectSetOptionWidth(double width, int32_t widthUnit) in FfiOHOSAceFrameworkSelectSetOptionWidth() argument
154 Dimension dimStrokeWidth(width, static_cast<DimensionUnit>(widthUnit)); in FfiOHOSAceFrameworkSelectSetOptionWidth()
H A Dcj_line_ffi.cpp27 void FfiOHOSAceFrameworkLineCreate(double width, int32_t widthUnit, double height, int32_t heightUn… in FfiOHOSAceFrameworkLineCreate() argument
31 FfiOHOSAceFrameworkShapeSetWidth(width, widthUnit); in FfiOHOSAceFrameworkLineCreate()
H A Dcj_rect_ffi.h28 CJ_EXPORT void FfiOHOSAceFrameworkRectCreate(double width, int32_t widthUnit, double height, int32_…
29 CJ_EXPORT int64_t FfiOHOSAceFrameworkRectInsCreate(double width, int32_t widthUnit, double height, …
H A Dcj_navigator_ffi.cpp59 void FfiOHOSAceFrameworkNavigatorSetSize(double width, int32_t widthUnit, double height, int32_t he… in FfiOHOSAceFrameworkNavigatorSetSize() argument
61 FfiOHOSAceFrameworkNavigatorSetWidth(width, widthUnit); in FfiOHOSAceFrameworkNavigatorSetSize()
H A Dcj_polyline_ffi.cpp31 void FfiOHOSAceFrameworkPolylineCreate(double width, int32_t widthUnit, double height, int32_t heig… in FfiOHOSAceFrameworkPolylineCreate() argument
35 FfiOHOSAceFrameworkShapeSetWidth(width, widthUnit); in FfiOHOSAceFrameworkPolylineCreate()
H A Dcj_counter_ffi.cpp50 void FfiOHOSAceFrameworkCounterSetSize(double width, int32_t widthUnit, double height, int32_t heig… in FfiOHOSAceFrameworkCounterSetSize() argument
52 FfiOHOSAceFrameworkCounterSetWidth(width, widthUnit); in FfiOHOSAceFrameworkCounterSetSize()
H A Dcj_search_ffi.h41 int32_t widthUnit; member
48 CJ_EXPORT void FfiOHOSAceFrameworkSearchSetBorderWidth(double width, int32_t widthUnit);
H A Dcj_view_abstract_ffi.h57 int32_t widthUnit; member
92 int32_t widthUnit; member
101 int32_t widthUnit; member
150 int32_t widthUnit; member
206 double width, int32_t widthUnit, double height, int32_t heightUnit);
232 double width, int32_t widthUnit, double height, int32_t heightUnit);
H A Dcj_select_ffi.h51 CJ_EXPORT void FfiOHOSAceFrameworkSelectSetSpace(double width, int32_t widthUnit);
55 CJ_EXPORT void FfiOHOSAceFrameworkSelectSetOptionWidth(double width, int32_t widthUnit);
H A Dcj_button_ffi.cpp98 Dimension widthDime(params.width, static_cast<DimensionUnit>(params.widthUnit)); in FfiOHOSAceFrameworkButtonSetBorder()
163 void FfiOHOSAceFrameworkButtonSetSize(double width, int32_t widthUnit, double height, int32_t heigh… in FfiOHOSAceFrameworkButtonSetSize() argument
165 FfiOHOSAceFrameworkViewAbstractSetSize(width, widthUnit, height, heightUnit); in FfiOHOSAceFrameworkButtonSetSize()
H A Dcj_toggle_ffi.cpp55 void FfiOHOSAceFrameworkToggleSize(double width, int32_t widthUnit, double height, int32_t heightUn… in FfiOHOSAceFrameworkToggleSize() argument
57 Dimension widthDime(width, static_cast<DimensionUnit>(widthUnit)); in FfiOHOSAceFrameworkToggleSize()
H A Dcj_stack_ffi.cpp102 void FfiOHOSAceFrameworkStackSetSize(double width, int32_t widthUnit, double height, int32_t height… in FfiOHOSAceFrameworkStackSetSize() argument
104 Dimension widthDime(width, static_cast<DimensionUnit>(widthUnit)); in FfiOHOSAceFrameworkStackSetSize()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dplugin_modifier.cpp27 void SetPluginWidth(ArkUINodeHandle node, ArkUI_Float32 value, ArkUI_Int32 widthUnit) in SetPluginWidth() argument
31 Dimension width = Dimension(value, static_cast<DimensionUnit>(widthUnit)); in SetPluginWidth()
44 ArkUI_Int32 widthUnit, ArkUI_Int32 heightUnit) in SetPluginSize() argument
48 Dimension width = Dimension(widthVal, static_cast<DimensionUnit>(widthUnit)); in SetPluginSize()
H A Dform_component_modifier.cpp58 void SetFormSize(ArkUINodeHandle node, ArkUI_Float32 widthValue, ArkUI_Int32 widthUnit, in SetFormSize() argument
64 Dimension(widthValue, static_cast<OHOS::Ace::DimensionUnit>(widthUnit)), in SetFormSize()

123