/ohos5.0/foundation/graphic/graphic_utils_lite/test/ |
H A D | style_unit_test.cpp | 91 EXPECT_EQ(style_->GetStyle(STYLE_BORDER_RADIUS), 0); 123 EXPECT_EQ(style_->GetStyle(STYLE_BORDER_OPA), OPA_OPAQUE); 156 EXPECT_EQ(style_->GetStyle(STYLE_PADDING_LEFT), 0); 188 EXPECT_EQ(style_->GetStyle(STYLE_PADDING_TOP), 0); 220 EXPECT_EQ(style_->GetStyle(STYLE_MARGIN_LEFT), 0); 252 EXPECT_EQ(style_->GetStyle(STYLE_MARGIN_TOP), 0); 284 EXPECT_EQ(style_->GetStyle(STYLE_IMAGE_OPA), OPA_OPAQUE); 316 EXPECT_EQ(style_->GetStyle(STYLE_TEXT_FONT), 0); 367 EXPECT_EQ(style_->GetStyle(STYLE_TEXT_OPA), OPA_OPAQUE); 400 EXPECT_EQ(style_->GetStyle(STYLE_LINE_WIDTH), lineWidth); [all …]
|
/ohos5.0/foundation/arkui/ui_lite/test/unittest/components/ |
H A D | ui_scroll_bar_test.cpp | 201 …EXPECT_EQ(arcBar.GetBackStyle()->GetStyle(STYLE_LINE_COLOR), defaultBackStyle.GetStyle(STYLE_LINE_… 202 …EXPECT_EQ(arcBar.GetForeStyle()->GetStyle(STYLE_LINE_COLOR), defaultForeStyle.GetStyle(STYLE_LINE_… 204 …EXPECT_EQ(arcBar.GetBackStyle()->GetStyle(STYLE_LINE_OPA), defaultBackStyle.GetStyle(STYLE_LINE_OP… 205 …EXPECT_EQ(arcBar.GetForeStyle()->GetStyle(STYLE_LINE_OPA), defaultForeStyle.GetStyle(STYLE_LINE_OP… 207 EXPECT_EQ(boxBar.GetBackStyle()->GetStyle(STYLE_BACKGROUND_COLOR), 208 defaultBackStyle.GetStyle(STYLE_BACKGROUND_COLOR)); 209 EXPECT_EQ(boxBar.GetForeStyle()->GetStyle(STYLE_BACKGROUND_COLOR), 210 defaultForeStyle.GetStyle(STYLE_BACKGROUND_COLOR)); 212 …EXPECT_EQ(boxBar.GetBackStyle()->GetStyle(STYLE_BACKGROUND_OPA), defaultBackStyle.GetStyle(STYLE_B… 213 …EXPECT_EQ(boxBar.GetForeStyle()->GetStyle(STYLE_BACKGROUND_OPA), defaultForeStyle.GetStyle(STYLE_B…
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/button/ |
H A D | button_declaration.h | 131 auto& style = static_cast<ButtonStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetPadding() 137 auto& style = static_cast<ButtonStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetTextStyle() 143 auto& style = static_cast<ButtonStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetWidth() 149 auto& style = static_cast<ButtonStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetHeight() 155 auto& style = static_cast<ButtonStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetMinWidth() 161 auto& style = static_cast<ButtonStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetRectRadius() 167 auto& style = static_cast<ButtonStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetProgressDiameter() 173 auto& style = static_cast<ButtonStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetInnerPadding() 179 auto& style = static_cast<ButtonStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetIconHeight() 185 auto& style = static_cast<ButtonStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetIconWidth() [all …]
|
/ohos5.0/foundation/arkui/ui_lite/frameworks/layout/ |
H A D | flex_layout.cpp | 115 top = child->GetStyle(STYLE_MARGIN_TOP); in CalValidLength() 136 left = child->GetStyle(STYLE_MARGIN_LEFT); in CalRowCount() 137 right = child->GetStyle(STYLE_MARGIN_RIGHT); in CalRowCount() 166 left = child->GetStyle(STYLE_MARGIN_LEFT); in GetRowMaxHeight() 168 top = child->GetStyle(STYLE_MARGIN_TOP); in GetRowMaxHeight() 201 left = child->GetStyle(STYLE_MARGIN_LEFT); in GetRowsWidth() 230 int16_t top = child->GetStyle(STYLE_MARGIN_TOP); in GetCrossAxisPosY() 326 top = child->GetStyle(STYLE_MARGIN_TOP); in CalColumnCount() 355 left = child->GetStyle(STYLE_MARGIN_LEFT); in GetColumnMaxWidth() 389 top = child->GetStyle(STYLE_MARGIN_TOP); in GetColumnsHeight() [all …]
|
H A D | grid_layout.cpp | 67 left = child->GetStyle(STYLE_MARGIN_LEFT); in LayoutHorizontal() 68 right = child->GetStyle(STYLE_MARGIN_RIGHT); in LayoutHorizontal() 69 top = child->GetStyle(STYLE_MARGIN_TOP); in LayoutHorizontal() 70 bottom = child->GetStyle(STYLE_MARGIN_BOTTOM); in LayoutHorizontal() 101 left = child->GetStyle(STYLE_MARGIN_LEFT); in LayoutVertical() 102 right = child->GetStyle(STYLE_MARGIN_RIGHT); in LayoutVertical() 103 top = child->GetStyle(STYLE_MARGIN_TOP); in LayoutVertical() 104 bottom = child->GetStyle(STYLE_MARGIN_BOTTOM); in LayoutVertical()
|
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/test/unittest/common/ |
H A D | div_tdd_test.cpp | 287 if (divView->GetStyle(STYLE_MARGIN_LEFT) == 0 && divView->GetStyle(STYLE_MARGIN_TOP) == 0 && in ComponentDivStyleSetTest013() 288 divView->GetStyle(STYLE_MARGIN_RIGHT) == 0 && divView->GetStyle(STYLE_MARGIN_BOTTOM) == 0) { in ComponentDivStyleSetTest013() 293 EXPECT_EQ(divView->GetStyle(STYLE_MARGIN_LEFT), 0); in ComponentDivStyleSetTest013() 294 EXPECT_EQ(divView->GetStyle(STYLE_MARGIN_TOP), 0); in ComponentDivStyleSetTest013() 295 EXPECT_EQ(divView->GetStyle(STYLE_MARGIN_RIGHT), 0); in ComponentDivStyleSetTest013() 310 …if (divView->GetStyle(STYLE_MARGIN_LEFT) == margin && divView->GetStyle(STYLE_MARGIN_TOP) == margi… in ComponentDivStyleSetTest013() 311 …divView->GetStyle(STYLE_MARGIN_RIGHT) == margin && divView->GetStyle(STYLE_MARGIN_BOTTOM) == margi… in ComponentDivStyleSetTest013() 355 …if (divView->GetStyle(STYLE_MARGIN_LEFT) == marginNormal && divView->GetStyle(STYLE_MARGIN_TOP) ==… in ComponentDivStyleSetTest014() 383 if (divView->GetStyle(STYLE_BORDER_WIDTH) == 0) { in ComponentDivStyleSetTest015() 388 EXPECT_EQ(divView->GetStyle(STYLE_BORDER_WIDTH), 0); in ComponentDivStyleSetTest015() [all …]
|
H A D | text_tdd_test.cpp | 110 if (uilabelView->GetStyle(STYLE_TEXT_COLOR) == GetRGBColor(expectColorValue).full) { in ComponentTextStyleSetColorTest002() 122 if (uilabelView->GetStyle(STYLE_TEXT_COLOR) == GetRGBColor(expectColorValue2).full) { in ComponentTextStyleSetColorTest002() 134 if (uilabelView->GetStyle(STYLE_TEXT_COLOR) == GetRGBColor(expectColorValue3).full) { in ComponentTextStyleSetColorTest002() 230 if (uilabelView->GetStyle(STYLE_LETTER_SPACE) == expectLetterSpacingValue) { in ComponentTextStyleSetLetterSpacingTest004() 235 EXPECT_EQ(uilabelView->GetStyle(STYLE_LETTER_SPACE), expectLetterSpacingValue); in ComponentTextStyleSetLetterSpacingTest004() 244 if (uilabelView->GetStyle(STYLE_LETTER_SPACE) == expectLetterSpacingValue2) { in ComponentTextStyleSetLetterSpacingTest004() 249 EXPECT_EQ(uilabelView->GetStyle(STYLE_LETTER_SPACE), expectLetterSpacingValue2); in ComponentTextStyleSetLetterSpacingTest004() 257 if (uilabelView->GetStyle(STYLE_LETTER_SPACE) != expectLetterSpacingValue3) { in ComponentTextStyleSetLetterSpacingTest004() 262 EXPECT_NE(uilabelView->GetStyle(STYLE_LETTER_SPACE), expectLetterSpacingValue3); in ComponentTextStyleSetLetterSpacingTest004() 437 EXPECT_EQ(uilabelView->GetStyle(STYLE_LINE_HEIGHT), expectLineHeight); in ComponentTextStyleSetLineHeightTest008() [all …]
|
H A D | input_tdd_test.cpp | 374 int16_t left = button->GetStyle(STYLE_MARGIN_LEFT); in ComponentInputStyleTest07() 375 int16_t right = button->GetStyle(STYLE_MARGIN_RIGHT); in ComponentInputStyleTest07() 376 int16_t top = button->GetStyle(STYLE_MARGIN_TOP); in ComponentInputStyleTest07() 377 int16_t bottom = button->GetStyle(STYLE_MARGIN_BOTTOM); in ComponentInputStyleTest07() 469 tempColor.full = button->GetStyle(STYLE_BORDER_COLOR); 489 tempColor.full = button->GetStyle(STYLE_BACKGROUND_COLOR); 571 (checkbox->GetStyle(STYLE_MARGIN_RIGHT) == marginValue) && 572 (checkbox->GetStyle(STYLE_MARGIN_TOP) == marginValue) && 645 tempColor.full = checkbox->GetStyle(STYLE_BORDER_COLOR); 665 tempColor.full = checkbox->GetStyle(STYLE_BACKGROUND_COLOR); [all …]
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/texgine/texgine_drawing/src/ |
H A D | texgine_canvas.cpp | 28 if (paint.GetStyle() == TexginePaint::Style::FILL) { in DrawLine() 32 } else if (paint.GetStyle() == TexginePaint::Style::STROKE) { in DrawLine() 50 if (paint.GetStyle() == TexginePaint::Style::FILL) { in DrawRect() 54 } else if (paint.GetStyle() == TexginePaint::Style::STROKE) { in DrawRect() 72 if (paint.GetStyle() == TexginePaint::Style::FILL) { in DrawRRect() 76 } else if (paint.GetStyle() == TexginePaint::Style::STROKE) { in DrawRRect() 95 if (paint.GetStyle() == TexginePaint::Style::FILL) { in DrawTextBlob() 99 } else if (paint.GetStyle() == TexginePaint::Style::STROKE) { in DrawTextBlob() 117 if (paint.GetStyle() == TexginePaint::Style::FILL) { in DrawSymbol() 121 } else if (paint.GetStyle() == TexginePaint::Style::STROKE) { in DrawSymbol() [all …]
|
H A D | texgine_font_style_set.cpp | 41 void TexgineFontStyleSet::GetStyle(const int index, std::shared_ptr<TexgineFontStyle> style, in GetStyle() function in OHOS::Rosen::TextEngine::TexgineFontStyleSet 47 set_->GetStyle(index, style->GetFontStyle().get(), name->GetString()); in GetStyle()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/textfield/ |
H A D | textfield_declaration.h | 216 auto& style = static_cast<TextFieldStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetInputStyle() 228 auto& style = static_cast<TextFieldStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetPlaceHoldStyle() 234 auto& style = static_cast<TextFieldStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetEditingStyle() 270 auto& style = static_cast<TextFieldStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetPlaceholderColor() 294 auto& style = static_cast<TextFieldStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetTextAlign() 306 auto& style = static_cast<TextFieldStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetTextStyle() 318 auto& style = static_cast<TextFieldStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetErrorTextStyle() 330 auto& style = static_cast<TextFieldStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetErrorSpacing() 342 auto& style = static_cast<TextFieldStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetErrorIsInner() 354 auto& style = static_cast<TextFieldStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetErrorBorderWidth() [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/qrcode/ |
H A D | qrcode_declaration.h | 61 auto& style = static_cast<QrcodeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetBackgroundColor() 67 auto& style = static_cast<QrcodeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetQrcodeColor() 73 auto& style = static_cast<QrcodeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetQrcodeWidth() 79 auto& style = static_cast<QrcodeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetQrcodeHeight() 85 auto& style = static_cast<QrcodeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in IsWidthDefined() 91 auto& style = static_cast<QrcodeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in IsHeightDefined()
|
/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/test/unittest/common/data_binding/ |
H A D | data_binding_tdd_test.cpp | 213 EXPECT_EQ(label->GetStyle(STYLE_BACKGROUND_COLOR), 0xff000000); in StyleBindingTest002() 215 EXPECT_EQ(label->GetStyle(STYLE_BACKGROUND_COLOR), 0xffff0000); in StyleBindingTest002() 217 EXPECT_EQ(label->GetStyle(STYLE_BACKGROUND_COLOR), 0xff00ff00); in StyleBindingTest002() 219 EXPECT_EQ(label->GetStyle(STYLE_BACKGROUND_COLOR), 0xff0000ff); in StyleBindingTest002()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/text/ |
H A D | text_declaration.h | 66 auto& style = static_cast<TextSpecializedStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetTextStyle() 79 auto& style = static_cast<TextSpecializedStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetFocusColor() 92 auto& style = static_cast<TextSpecializedStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetCopyOption() 105 auto& style = static_cast<TextSpecializedStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in IsMaxWidthLayout() 118 auto& style = static_cast<TextSpecializedStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetAutoMaxLines()
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/piece/ |
H A D | piece_declaration.h | 123 auto& style = static_cast<PieceStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetTextStyle() 134 auto& style = static_cast<PieceStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetMargin() 145 auto& style = static_cast<PieceStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetBorder() 156 auto& style = static_cast<PieceStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetHoverColor() 174 auto& style = static_cast<PieceStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetBackGroundColor() 201 auto& imageStyle = static_cast<CommonImageStyle&>(GetStyle(StyleTag::COMMON_IMAGE_STYLE)); in GetImageFill()
|
/ohos5.0/base/global/i18n/frameworks/intl/test/unittest/ |
H A D | intl_number_format_test.cpp | 61 EXPECT_EQ(numFmt->GetStyle(), style); 91 EXPECT_EQ(numFmt->GetStyle(), style); 121 EXPECT_EQ(numFmt->GetStyle(), style); 151 EXPECT_EQ(numFmt->GetStyle(), style); 181 EXPECT_EQ(numFmt->GetStyle(), style); 211 EXPECT_EQ(numFmt->GetStyle(), style);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/badge/ |
H A D | badge_declaration.h | 107 auto& style = static_cast<BadgeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetBadgeColor() 113 auto& style = static_cast<BadgeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetBadgeTextColor() 119 auto& style = static_cast<BadgeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetBadgeFontSize() 125 auto& style = static_cast<BadgeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetPadding() 131 auto& style = static_cast<BadgeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetBadgeCircleSize() 137 auto& style = static_cast<BadgeStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in IsBadgeCircleSizeDefined()
|
/ohos5.0/base/update/updater/test/unittest/updater_ui_test/view/ |
H A D | ui_component_unittest.cpp | 303 EXPECT_EQ(labelBtn.GetStyle(OHOS::STYLE_TEXT_COLOR), fontColor.full); 304 EXPECT_EQ(labelBtn.GetStyle(OHOS::STYLE_TEXT_OPA), fontColor.alpha); 305 EXPECT_EQ(labelBtn.GetStyle(OHOS::STYLE_BACKGROUND_COLOR), bgColor.full); 306 EXPECT_EQ(labelBtn.GetStyle(OHOS::STYLE_BACKGROUND_OPA), bgColor.alpha); 322 …EXPECT_EQ(labelBtn1.GetStyle(OHOS::STYLE_BACKGROUND_COLOR), (OHOS::ColorType {{0, 0, 0, 0xff}}.ful… 323 …EXPECT_EQ(labelBtn2.GetStyle(OHOS::STYLE_BACKGROUND_COLOR), (OHOS::ColorType {{0xff, 0xff, 0xff, 0… 372 EXPECT_EQ(textLabel.GetStyle(OHOS::STYLE_TEXT_COLOR), fontColor.full); 373 EXPECT_EQ(textLabel.GetStyle(OHOS::STYLE_TEXT_OPA), fontColor.alpha); 374 EXPECT_EQ(textLabel.GetStyle(OHOS::STYLE_BACKGROUND_COLOR), bgColor.full); 375 EXPECT_EQ(textLabel.GetStyle(OHOS::STYLE_BACKGROUND_OPA), bgColor.alpha);
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/search/ |
H A D | search_declaration.h | 148 auto& style = static_cast<SearchStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetDecoration() 160 auto& style = static_cast<SearchStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetHoverColor() 172 auto& style = static_cast<SearchStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetPressColor() 216 auto& style = static_cast<SearchStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetPlaceHoldStyle() 222 auto& style = static_cast<SearchStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetEditingStyle()
|
/ohos5.0/foundation/arkui/ui_lite/frameworks/components/ |
H A D | ui_list.cpp | 55 …int16_t y = childHead->GetRelativeRect().GetTop() - height - childHead->GetStyle(STYLE_MARGIN_TOP); in MeasureAdapterRelativeRect() 65 …int16_t x = childHead->GetRelativeRect().GetLeft() - width - childHead->GetStyle(STYLE_MARGIN_LEFT… in MeasureAdapterRelativeRect() 288 … if (childrenTail_->GetRelativeRect().GetRight() + childrenTail_->GetStyle(STYLE_MARGIN_RIGHT) < in DragXInner() 294 childrenTail_->GetStyle(STYLE_MARGIN_RIGHT) - 1; in DragXInner() 328 … if (childrenTail_->GetRelativeRect().GetBottom() + childrenTail_->GetStyle(STYLE_MARGIN_BOTTOM) < in DragYInner() 334 childrenTail_->GetStyle(STYLE_MARGIN_BOTTOM) - 1; in DragYInner() 638 … (childrenTail_->GetY() + height + childrenTail_->GetStyle(STYLE_MARGIN_BOTTOM) + yOffset < in MoveChildByOffset() 668 if ((y - view->GetStyle(STYLE_PADDING_TOP) <= selectPosition_) && in MoveChildByOffset() 669 (y + view->GetStyle(STYLE_MARGIN_BOTTOM) + height >= selectPosition_) && in MoveChildByOffset() 680 if ((x - view->GetStyle(STYLE_MARGIN_LEFT) <= selectPosition_) && in MoveChildByOffset() [all …]
|
H A D | ui_canvas.cpp | 404 if (static_cast<uint8_t>(paint.GetStyle()) & Paint::PaintStyle::FILL_STYLE) { in DrawRect() 587 if (static_cast<uint8_t>(paint.GetStyle()) & Paint::PaintStyle::FILL_STYLE) { in DrawSector() 591 if (static_cast<uint8_t>(paint.GetStyle()) & Paint::PaintStyle::FILL_STYLE) { in DrawSector() 655 if (static_cast<uint8_t>(paint.GetStyle()) & Paint::PaintStyle::FILL_STYLE) { in DrawLabel() 688 if (static_cast<uint8_t>(paint.GetStyle()) & Paint::PaintStyle::FILL_STYLE) { in DrawImage() 782 if (paint.GetStyle() == Paint::PATTERN) { in DrawPath() 838 if (paint.GetStyle() == Paint::PATTERN) { in FillPath() 911 if (curDraw->data_.paint.GetStyle() == Paint::PATTERN) { in OnBlendDrawPattern() 938 if (curDraw->data_.paint.GetStyle() == Paint::GRADIENT) { in OnBlendDrawGradient() 1622 if (paint.GetStyle() == Paint::GRADIENT) { in BlendRaster() [all …]
|
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/ |
H A D | side_bar_composed_element.cpp | 29 { "type", [](const SideBarComposedElement& inspector) { return inspector.GetStyle(); } }, in __anon18e769550202() 44 DumpLog::GetInstance().AddDesc(std::string("type: ").append(GetStyle())); in Dump() 72 std::string SideBarComposedElement::GetStyle() const in GetStyle() function in OHOS::Ace::V2::SideBarComposedElement 76 return render->GetStyle(); in GetStyle()
|
H A D | badge_composed_element.cpp | 29 { "style", [](const BadgeComposedElement& inspector) { return inspector.GetStyle(); } } in __anon58f0cb8f0502() 45 std::string("style: ").append(GetStyle())); in Dump() 118 std::string BadgeComposedElement::GetStyle() const in GetStyle() function in OHOS::Ace::V2::BadgeComposedElement
|
/ohos5.0/foundation/arkui/ui_lite/frameworks/draw/ |
H A D | draw_canvas.h | 143 … if (paint.GetStyle() == Paint::STROKE_STYLE || paint.GetStyle() == Paint::STROKE_FILL_STYLE) { in RenderBlendSolid() 148 … if (paint.GetStyle() == Paint::FILL_STYLE || paint.GetStyle() == Paint::STROKE_FILL_STYLE) { in RenderBlendSolid()
|
/ohos5.0/foundation/graphic/graphic_2d/rosen/modules/2d_graphics/src/drawing/text/ |
H A D | font_style_set.cpp | 35 void FontStyleSet::GetStyle(int32_t index, FontStyle* fontStyle, std::string* styleName) in GetStyle() function in OHOS::Rosen::Drawing::FontStyleSet 38 fontStyleSetImpl_->GetStyle(index, fontStyle, styleName); in GetStyle()
|