Home
last modified time | relevance | path

Searched refs:GetStyle (Results 1 – 25 of 101) sorted by relevance

12345

/foundation/graphic/graphic_utils_lite/test/
Dstyle_unit_test.cpp59 EXPECT_EQ(style_->GetStyle(STYLE_BACKGROUND_COLOR), Color::Gray().full);
75 EXPECT_EQ(style_->GetStyle(STYLE_BACKGROUND_OPA), OPA_OPAQUE);
91 EXPECT_EQ(style_->GetStyle(STYLE_BORDER_RADIUS), 0);
107 EXPECT_EQ(style_->GetStyle(STYLE_BORDER_COLOR), Color::Gray().full);
123 EXPECT_EQ(style_->GetStyle(STYLE_BORDER_OPA), OPA_OPAQUE);
140 EXPECT_EQ(style_->GetStyle(STYLE_BORDER_WIDTH), BORDER_WIDTH);
156 EXPECT_EQ(style_->GetStyle(STYLE_PADDING_LEFT), 0);
172 EXPECT_EQ(style_->GetStyle(STYLE_PADDING_RIGHT), HORIZONTAL_RESOLUTION);
188 EXPECT_EQ(style_->GetStyle(STYLE_PADDING_TOP), 0);
204 EXPECT_EQ(style_->GetStyle(STYLE_PADDING_BOTTOM), VERTICAL_RESOLUTION);
[all …]
/foundation/arkui/ui_lite/test/unittest/components/
Dui_scroll_bar_test.cpp201 …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…
Dui_button_unit_test.cpp130 EXPECT_EQ(button_->GetStyle(STYLE_BACKGROUND_COLOR), Color::Blue().full);
148 EXPECT_EQ(button_->GetStyle(STYLE_BACKGROUND_COLOR), Color::Red().full);
166 EXPECT_EQ(button_->GetStyle(STYLE_BACKGROUND_COLOR), Color::Green().full);
337 EXPECT_EQ(button_->GetStyle(STYLE_BACKGROUND_COLOR), Color::Red().full);
339 EXPECT_EQ(button_->GetStyle(STYLE_BACKGROUND_COLOR), Color::Green().full);
/foundation/arkui/ace_engine/frameworks/core/components/declaration/button/
Dbutton_declaration.h131 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 …]
/foundation/arkui/ui_lite/frameworks/layout/
Dflex_layout.cpp111 left = child->GetStyle(STYLE_MARGIN_LEFT); in CalValidLength()
112 right = child->GetStyle(STYLE_MARGIN_RIGHT); in CalValidLength()
115 top = child->GetStyle(STYLE_MARGIN_TOP); in CalValidLength()
116 bottom = child->GetStyle(STYLE_MARGIN_BOTTOM); 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()
167 right = child->GetStyle(STYLE_MARGIN_RIGHT); in GetRowMaxHeight()
168 top = child->GetStyle(STYLE_MARGIN_TOP); in GetRowMaxHeight()
169 bottom = child->GetStyle(STYLE_MARGIN_BOTTOM); in GetRowMaxHeight()
[all …]
Dgrid_layout.cpp67 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()
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/test/unittest/common/
Ddiv_tdd_test.cpp287 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()
296 EXPECT_EQ(divView->GetStyle(STYLE_MARGIN_BOTTOM), 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()
316 EXPECT_TRUE(divView->GetStyle(STYLE_MARGIN_LEFT) == margin); in ComponentDivStyleSetTest013()
317 EXPECT_TRUE(divView->GetStyle(STYLE_MARGIN_TOP) == margin); in ComponentDivStyleSetTest013()
[all …]
Ddata_binding_tdd_test.cpp213 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()
Dtext_tdd_test.cpp110 if (uilabelView->GetStyle(STYLE_TEXT_COLOR) == GetRGBColor(expectColorValue).full) { in ComponentTextStyleSetColorTest002()
115 EXPECT_EQ(uilabelView->GetStyle(STYLE_TEXT_COLOR), GetRGBColor(expectColorValue).full); in ComponentTextStyleSetColorTest002()
122 if (uilabelView->GetStyle(STYLE_TEXT_COLOR) == GetRGBColor(expectColorValue2).full) { in ComponentTextStyleSetColorTest002()
127 EXPECT_EQ(uilabelView->GetStyle(STYLE_TEXT_COLOR), GetRGBColor(expectColorValue2).full); in ComponentTextStyleSetColorTest002()
134 if (uilabelView->GetStyle(STYLE_TEXT_COLOR) == GetRGBColor(expectColorValue3).full) { in ComponentTextStyleSetColorTest002()
139 EXPECT_EQ(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()
[all …]
Dinput_tdd_test.cpp374 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()
387 EXPECT_TRUE((button != nullptr) && (button->GetStyle(STYLE_MARGIN_LEFT) == marginLeftValue)); in ComponentInputStyleTest07()
410 EXPECT_TRUE((button != nullptr) && (button->GetStyle(STYLE_MARGIN_BOTTOM) == marginValue)); in ComponentInputStyleTest07Extra()
420 EXPECT_TRUE((button != nullptr) && (button->GetStyle(STYLE_MARGIN_RIGHT) == marginValue)); in ComponentInputStyleTest07Extra()
427 EXPECT_TRUE((button != nullptr) && (button->GetStyle(STYLE_MARGIN_TOP) == marginValue)); in ComponentInputStyleTest07Extra()
458 EXPECT_TRUE((button != nullptr) && (button->GetStyle(STYLE_BORDER_WIDTH) == borderWidthValue));
469 tempColor.full = button->GetStyle(STYLE_BORDER_COLOR);
[all …]
/foundation/arkui/ace_engine/frameworks/core/components/declaration/qrcode/
Dqrcode_declaration.h61 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()
/foundation/arkui/ace_engine/frameworks/core/components/declaration/textfield/
Dtextfield_declaration.h216 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 …]
/foundation/graphic/graphic_2d/rosen/test/texgine/unittest/
Dtexgine_font_style_set_test.cpp53 HWTEST_F(TexgineFontStyleSetTest, GetStyle, TestSize.Level1)
60 tfss1->GetStyle(0, tfs, name);
64 tfss2->GetStyle(0, nullptr, name);
68 tfss3->GetStyle(0, tfs, nullptr);
72 tfss4->GetStyle(0, tfs, name);
/foundation/arkui/ace_engine/frameworks/core/components/declaration/text/
Dtext_declaration.h66 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()
/foundation/arkui/ace_engine/frameworks/core/components/declaration/piece/
Dpiece_declaration.h123 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()
/foundation/arkui/ace_engine/frameworks/core/components/declaration/badge/
Dbadge_declaration.h107 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()
/foundation/graphic/graphic_2d/rosen/modules/texgine/src/
Dvariant_font_style_set.cpp72 void VariantFontStyleSet::GetStyle(int index, std::shared_ptr<TexgineFontStyle> style, in GetStyle() function in OHOS::Rosen::TextEngine::VariantFontStyleSet
77 return tfss_->GetStyle(index, style, name); in GetStyle()
81 return dfss_->GetStyle(index, style, name); in GetStyle()
/foundation/arkui/ace_engine/frameworks/core/components/declaration/search/
Dsearch_declaration.h148 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()
/foundation/arkui/ace_engine/frameworks/core/components_v2/inspector/
Dside_bar_composed_element.cpp29 { "type", [](const SideBarComposedElement& inspector) { return inspector.GetStyle(); } }, in __anon4b39007d0202()
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()
Dbadge_composed_element.cpp29 { "style", [](const BadgeComposedElement& inspector) { return inspector.GetStyle(); } } in __anon848d73b70502()
45 std::string("style: ").append(GetStyle())); in Dump()
118 std::string BadgeComposedElement::GetStyle() const in GetStyle() function in OHOS::Ace::V2::BadgeComposedElement
/foundation/arkui/ui_lite/frameworks/draw/
Ddraw_canvas.h143 … 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()
/foundation/arkui/ui_lite/frameworks/components/
Dui_list.cpp55 …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()
291 …} else if ((childrenTail_->GetRelativeRect().GetRight() + childrenTail_->GetStyle(STYLE_MARGIN_RIG… in DragXInner()
294 childrenTail_->GetStyle(STYLE_MARGIN_RIGHT) - 1; in DragXInner()
328 … if (childrenTail_->GetRelativeRect().GetBottom() + childrenTail_->GetStyle(STYLE_MARGIN_BOTTOM) < in DragYInner()
331 …} else if ((childrenTail_->GetRelativeRect().GetBottom() + childrenTail_->GetStyle(STYLE_MARGIN_BO… in DragYInner()
334 childrenTail_->GetStyle(STYLE_MARGIN_BOTTOM) - 1; in DragYInner()
638 … (childrenTail_->GetY() + height + childrenTail_->GetStyle(STYLE_MARGIN_BOTTOM) + yOffset < in MoveChildByOffset()
650 … (childrenTail_->GetX() + width + childrenTail_->GetStyle(STYLE_MARGIN_RIGHT) < selectPosition_)) { in MoveChildByOffset()
[all …]
/foundation/arkui/ace_engine/frameworks/core/components_ng/render/
Drender_property.cpp113 if (shadow.GetStyle() == ShadowStyle::OuterDefaultXS) { in ToJsonValue()
115 } else if (shadow.GetStyle() == ShadowStyle::OuterDefaultSM) { in ToJsonValue()
117 } else if (shadow.GetStyle() == ShadowStyle::OuterDefaultMD) { in ToJsonValue()
119 } else if (shadow.GetStyle() == ShadowStyle::OuterDefaultLG) { in ToJsonValue()
121 } else if (shadow.GetStyle() == ShadowStyle::OuterFloatingSM) { in ToJsonValue()
123 } else if (shadow.GetStyle() == ShadowStyle::OuterFloatingMD) { in ToJsonValue()
/foundation/graphic/graphic_2d/rosen/modules/render_service_base/src/render/
Drs_border.cpp85 BorderStyle RSBorder::GetStyle(int idx) const in GetStyle() function in OHOS::Rosen::RSBorder
145 return Vector4<uint32_t>(static_cast<uint32_t>(GetStyle())); in GetStyleFour()
210 if (styles_.size() != 1 || GetStyle() != BorderStyle::SOLID) { in ApplyFillStyle()
235 SetBorderEffect(paint, GetStyle(), widths_.front(), 0.f, 0.f); in ApplyPathStyle()
239 SetBorderEffect(pen, GetStyle(), widths_.front(), 0.f, 0.f); in ApplyPathStyle()
269 float addLen = (GetStyle(borderIdx) != BorderStyle::DOTTED) ? 0.0f : 0.5f; in ApplyLineStyle()
280 … SetBorderEffect(paint, GetStyle(borderIdx), borderWidth, borderLength / rawNumber, borderLength); in ApplyLineStyle()
285 SetBorderEffect(pen, GetStyle(borderIdx), borderWidth, borderLength / rawNumber, borderLength); in ApplyLineStyle()
302 float addLen = (GetStyle(RSBorder::LEFT) != BorderStyle::DOTTED) ? 0.0f : 0.5f; in PaintFourLine()
308 float addLen = (GetStyle(RSBorder::RIGHT) != BorderStyle::DOTTED) ? 0.0f : 0.5f; in PaintFourLine()
[all …]
/foundation/arkui/ace_engine/frameworks/core/components/declaration/swiper/
Dswiper_declaration.h223 auto& style = static_cast<SwiperStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetAnimationCurve()
234 auto& style = static_cast<SwiperStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetItemSpace()
246 auto& style = static_cast<SwiperStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetFadeColor()
264 auto& style = static_cast<SwiperStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetPreviousMargin()
276 auto& style = static_cast<SwiperStyle&>(GetStyle(StyleTag::SPECIALIZED_STYLE)); in GetNextMargin()

12345