/foundation/arkui/ace_engine_lite/test/moduletest/common/test_app/ui_auto_test/src/main/js/default/pages/chart/30/ |
H A D | index.js | 38 strokeColor: "#FBD140", 51 strokeColor: "#ff0000", 57 strokeColor: "#FEFEFE", 63 strokeColor: "#FEFEFE", 78 strokeColor: "#FBD140", 92 strokeColor: "#ff0000",
|
/foundation/arkui/ace_engine_lite/test/moduletest/common/test_app/ui_auto_test/src/main/js/default/common/js/ |
H A D | chart.js | 22 strokeColor: "#0000FF", 55 strokeColor: "#0000FF", 68 strokeColor: "#0000FF",
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/ |
H A D | shape_painter.cpp | 64 Color strokeColor = Color::TRANSPARENT; in SetPen() local 66 strokeColor = shapePaintProperty.GetStrokeValue(); in SetPen() 68 RSColor rSColor(strokeColor.GetRed(), strokeColor.GetGreen(), strokeColor.GetBlue(), strokeColor.GetAlpha()); in SetPen()
|
/foundation/arkui/ace_engine_lite/frameworks/examples/showcase/src/main/js/default/common/js/ |
H A D | chart.js | 33 strokeColor: '#eeaaff', 37 strokeColor: '#ccddee', 41 strokeColor: '#ddaacc',
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/ |
H A D | focus_box.cpp | 25 if (!paintStyle_->strokeColor && !paintStyle_->strokeWidth && !paintStyle_->margin) { in SetStyle() 43 if (box.paintStyle_->strokeColor) { in ToJsonValue() 44 json->Put("strokeColor", box.paintStyle_->strokeColor.value().ToString().c_str()); in ToJsonValue()
|
H A D | focus_box.h | 28 std::optional<Color> strokeColor; member
|
/foundation/arkui/ace_engine/test/unittest/core/event/ |
H A D | focus_box_test_ng.cpp | 136 style.strokeColor = Color::WHITE; in HWTEST_F() 165 style.strokeColor = Color::WHITE; in HWTEST_F() 182 style.strokeColor = Color::WHITE; in HWTEST_F()
|
H A D | focus_hub_test_ng_branch_coverage.cpp | 60 styledStyle.strokeColor = Color::RED; in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/ |
H A D | sk_painter.cpp | 114 Color strokeColor = Color::BLACK; in SetPen() local 116 strokeColor = shapePaintProperty.GetStrokeValue(); in SetPen() 122 skPaint.setColor(strokeColor.BlendOpacity(curOpacity).GetValue()); in SetPen() 187 Color strokeColor = Color::BLACK; in SetPen() local 189 strokeColor = shapePaintProperty.GetStrokeValue(); in SetPen() 195 pen.SetColor(strokeColor.BlendOpacity(curOpacity).GetValue()); in SetPen()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/adapter/rosen/ |
H A D | drawing_painter.cpp | 85 Color strokeColor = Color::BLACK; in SetPen() local 87 strokeColor = shapePaintProperty.GetStrokeValue(); in SetPen() 93 pen.SetColor(strokeColor.BlendOpacity(curOpacity).GetValue()); in SetPen()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/render_node/ |
H A D | render_node_properties.h | 26 uint32_t strokeColor = SHAPE_MASK_DEFAULT_COLOR; member
|
/foundation/arkui/ui_lite/test/unittest/components/ |
H A D | ui_chart_unit_test.cpp | 69 pointStyle.strokeColor = Color::White(); in InitPointStyle() 380 EXPECT_EQ(pointStyle1.strokeColor.full, pointStyle.strokeColor.full); in HWTEST_F() 403 EXPECT_EQ(pointStyle1.strokeColor.full, pointStyle.strokeColor.full); in HWTEST_F() 426 EXPECT_EQ(pointStyle1.strokeColor.full, pointStyle.strokeColor.full); in HWTEST_F()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | render_node_modifier.cpp | 343 ArkUI_Uint32 fillColor, ArkUI_Uint32 strokeColor, ArkUI_Float32 strokeWidth) in SetRectMask() 351 ShapeMaskProperty property { fillColor, strokeColor, strokeWidth }; in SetRectMask() 358 ArkUI_Uint32 fillColor, ArkUI_Uint32 strokeColor, ArkUI_Float32 strokeWidth) in SetCircleMask() 373 ShapeMaskProperty property { fillColor, strokeColor, strokeWidth }; in SetCircleMask() 380 ArkUI_Uint32 fillColor, ArkUI_Uint32 strokeColor, ArkUI_Float32 strokeWidth) in SetRoundRectMask() 400 ShapeMaskProperty property { fillColor, strokeColor, strokeWidth }; in SetRoundRectMask() 408 ArkUI_Uint32 fillColor, ArkUI_Uint32 strokeColor, ArkUI_Float32 strokeWidth) in SetOvalMask() 416 ShapeMaskProperty property { fillColor, strokeColor, strokeWidth }; in SetOvalMask() 421 void SetCommandPathMask(ArkUINodeHandle node, ArkUI_CharPtr commands, ArkUI_Uint32 fillColor, ArkUI_Uint32 strokeColor, in SetCommandPathMask() argument 429 ShapeMaskProperty property { fillColor, strokeColor, strokeWidt in SetCommandPathMask() 341 SetRectMask(ArkUINodeHandle node, ArkUI_Float32 rectX, ArkUI_Float32 rectY, ArkUI_Float32 rectW, ArkUI_Float32 rectH, ArkUI_Uint32 fillColor, ArkUI_Uint32 strokeColor, ArkUI_Float32 strokeWidth) SetRectMask() argument 356 SetCircleMask(ArkUINodeHandle node, ArkUI_Float32 centerXValue, ArkUI_Float32 centerYValue, ArkUI_Float32 radiusValue, ArkUI_Uint32 fillColor, ArkUI_Uint32 strokeColor, ArkUI_Float32 strokeWidth) SetCircleMask() argument 379 SetRoundRectMask(ArkUINodeHandle node, const ArkUI_Float32* roundRect, const ArkUI_Uint32 roundRectSize, ArkUI_Uint32 fillColor, ArkUI_Uint32 strokeColor, ArkUI_Float32 strokeWidth) SetRoundRectMask() argument 406 SetOvalMask(ArkUINodeHandle node, ArkUI_Float32 rectX, ArkUI_Float32 rectY, ArkUI_Float32 rectW, ArkUI_Float32 rectH, ArkUI_Uint32 fillColor, ArkUI_Uint32 strokeColor, ArkUI_Float32 strokeWidth) SetOvalMask() argument [all...] |
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | chart_component.h | 38 uint32_t strokeColor; member 41 PointOptions() : size(POINT_SIZE), strokeWidth(1), strokeColor(0xFF0000), fillColor(0xFF0000) {} in PointOptions() 101 uint32_t strokeColor, uint32_t radius, uint32_t strokeWidth);
|
H A D | chart_component.cpp | 32 const char * const ChartComponent::STROKE_COLOR = "strokeColor"; 211 uint32_t fillColor, uint32_t strokeColor, uint32_t radius, uint32_t strokeWidth) in UpdatePointStyle() 220 pointStyle->strokeColor = GetRGBColor(strokeColor); in UpdatePointStyle() 231 seriesOptions_->head->strokeColor, seriesOptions_->head->size, seriesOptions_->head->strokeWidth); in UpdatePointToSerial() 241 seriesOptions_->top->strokeColor, seriesOptions_->top->size, seriesOptions_->top->strokeWidth); in UpdatePointToSerial() 251 seriesOptions_->bottom->fillColor, seriesOptions_->bottom->strokeColor, in UpdatePointToSerial() 835 uint32_t strokeColor = GetColor(jPointStyleVal, styleName, defaultColorVal); in SetOptionsInfo() local 848 seriesOptions_->head->strokeColor = strokeColor; in SetOptionsInfo() 210 UpdatePointStyle(UIChartDataSerial::PointStyle *pointStyle, uint32_t fillColor, uint32_t strokeColor, uint32_t radius, uint32_t strokeWidth) UpdatePointStyle() argument [all...] |
/foundation/arkui/ace_engine_lite/test/moduletest/common/test_app/ui_auto_test/src/main/js/default/pages/chart/29/ |
H A D | index.js | 60 strokeColor: "#0000ff",
|
/foundation/arkui/ace_engine/test/unittest/core/rosen/ |
H A D | rosen_render_context_test_new.cpp | 120 property.strokeColor = SHAPE_MASK_DEFAULT_COLOR; in HWTEST_F() 126 rsStrokeColor.SetColorQuad(property.strokeColor); in HWTEST_F() 152 property.strokeColor = SHAPE_MASK_DEFAULT_COLOR; in HWTEST_F() 158 rsStrokeColor.SetColorQuad(property.strokeColor); in HWTEST_F() 198 property.strokeColor = SHAPE_MASK_DEFAULT_COLOR; in HWTEST_F() 204 rsStrokeColor.SetColorQuad(property.strokeColor); in HWTEST_F() 232 property.strokeColor = SHAPE_MASK_DEFAULT_COLOR; in HWTEST_F() 238 rsStrokeColor.SetColorQuad(property.strokeColor); in HWTEST_F() 264 property.strokeColor = SHAPE_MASK_DEFAULT_COLOR; in HWTEST_F() 270 rsStrokeColor.SetColorQuad(property.strokeColor); in HWTEST_F() [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_checkboxgroup_bridge.cpp | 179 Color strokeColor; in SetCheckboxGroupMark() local 180 if (!ArkTSUtils::ParseJsColorAlpha(vm, colorArg, strokeColor)) { in SetCheckboxGroupMark() 181 strokeColor = theme->GetPointColor(); in SetCheckboxGroupMark() 197 nativeNode, strokeColor.GetValue(), size.Value(), strokeWidth.Value()); in SetCheckboxGroupMark()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_checkbox.cpp | 290 auto strokeColorValue = markObj->GetProperty("strokeColor"); in Mark() 291 Color strokeColor = theme->GetPointColor(); in Mark() local 292 if (!ParseJsColor(strokeColorValue, strokeColor)) { in Mark() 293 JSCheckBoxTheme::ObtainCheckMarkColor(strokeColor); in Mark() 295 CheckBoxModel::GetInstance()->SetCheckMarkColor(strokeColor); in Mark()
|
H A D | js_checkboxgroup.cpp | 237 auto strokeColorValue = markObj->GetProperty("strokeColor"); in Mark() 239 Color strokeColor = theme->GetPointColor(); in Mark() local 240 if (!ParseJsColor(strokeColorValue, strokeColor)) { in Mark() 241 JSCheckBoxGroupTheme::ObtainCheckMarkColor(strokeColor); in Mark() 243 CheckBoxGroupModel::GetInstance()->SetCheckMarkColor(strokeColor); in Mark()
|
H A D | js_shape_abstract.cpp | 90 Color strokeColor; in SetStroke() local 91 if (!ParseJsColor(info[0], strokeColor)) { in SetStroke() 95 ShapeAbstractModel::GetInstance()->SetStroke(strokeColor); in SetStroke()
|
H A D | js_shape.cpp | 182 Color strokeColor = Color::TRANSPARENT; in SetStroke() local 183 ParseJsColor(info[0], strokeColor); in SetStroke() 184 ShapeModel::GetInstance()->SetStroke(strokeColor); in SetStroke()
|
/foundation/arkui/ui_lite/test/uitest/test_chart/ |
H A D | ui_test_chart_polyline.cpp | 326 pointStyle.strokeColor = Color::Red(); in OnClick() 349 pointStyle.strokeColor = Color::Red(); in OnClick() 354 pointStyle.strokeColor = Color::Blue(); in OnClick() 359 pointStyle.strokeColor = Color::Yellow(); in OnClick()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/picker/ |
H A D | picker_type_define.h | 72 std::optional<Color> strokeColor; member
|
/foundation/multimodalinput/input/service/window_manager/test/ |
H A D | knuckle_glow_point_test.cpp | 67 decodeOpts.SVGOpts.strokeColor = {.isValidColor = false, .color = MAX_POINTER_COLOR}; in DecodeImageToPixelMap()
|