Home
last modified time | relevance | path

Searched refs:iconHeight (Results 1 – 14 of 14) sorted by relevance

/ohos5.0/base/useriam/user_auth_framework/frameworks/js/napi/user_auth_icon/
H A Duser_auth_icon.js43 this.iconHeight = 64;
61 if (a1.iconHeight !== undefined) {
62 this.iconHeight = a1.iconHeight;
186 SymbolGlyph.fontSize(this.iconHeight);
/ohos5.0/docs/zh-cn/application-dev/reference/apis-user-authentication-kit/
H A Dohos-useriam-userauthicon.md36 iconHeight?: Dimension,
54 | iconHeight | [Dimension](../apis-arkui/arkui-ts/ts-types.md#dimension10) | 否 | 设置icon的高度,宽高…
87 iconHeight: 200,
/ohos5.0/docs/en/application-dev/reference/apis-user-authentication-kit/
H A Dohos-useriam-userauthicon.md37 iconHeight?: Dimension,
55 | iconHeight | [Dimension](../apis-arkui/arkui-ts/ts-types.md#dimension10) | No | Height of th…
88 iconHeight: 200,
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/security_component/
H A Dsecurity_component_layout_algorithm.cpp229 double iconHeight = icon_.height_; in ShrinkHeight() local
233 if (GreatNotEqual(textHeight, iconHeight)) { in ShrinkHeight()
235 double iconRemain = (remain - textRemain) * iconHeight / textHeight; in ShrinkHeight()
239 double textRemain = (remain - iconRemain) * textHeight / iconHeight; in ShrinkHeight()
243 double iconRemain = iconHeight * remain / (iconHeight + textHeight); in ShrinkHeight()
244 double textRemain = textHeight * remain / (iconHeight + textHeight); in ShrinkHeight()
/ohos5.0/base/useriam/user_auth_framework/user_auth_icon/
H A DREADME_ZH.md71 iconHeight: 200,
H A DREADME.md63 iconHeight: 200,
/ohos5.0/docs/zh-cn/release-notes/changelogs/OpenHarmony_5.0.0.31/
H A Dchangelogs-useriam.md60 iconHeight: 200,
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/declaration/button/
H A Dbutton_declaration.h45 Dimension iconHeight; member
180 return style.iconHeight; in GetIconHeight()
413 style.iconHeight = height; in SetIconHeight()
H A Dbutton_declaration.cpp183 buttonStyle.iconHeight = button.ParseDimension(value); in SetSpecializedStyle()
/ohos5.0/docs/en/release-notes/changelogs/OpenHarmony_5.0.0.31/
H A Dchangelogs-useriam.md60 iconHeight: 200,
/ohos5.0/base/useriam/user_auth_framework/user_auth_icon/library/src/main/ets/components/mainpage/
H A DUserAuthIcon.ets66 iconHeight?: Dimension = 64;
195 .fontSize(this.iconHeight)
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/navigation/
H A Dnavigation_title_util.cpp292 auto iconHeight = theme->GetMenuIconSize(); in CreateBarItemIconNode() local
297 iconHeight = theme->GetIconHeight(); in CreateBarItemIconNode()
328 …ayoutProperty->UpdateUserDefinedIdealSize(CalcSize(CalcLength(iconWidth), CalcLength(iconHeight))); in CreateBarItemIconNode()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/menu/menu_item/
H A Dmenu_item_pattern.cpp1317 … auto iconHeight = isStart ? selectTheme->GetIconSideLength() : selectTheme->GetEndIconHeight(); in UpdateImageIcon() local
1323 …UpdateIconSrc(iconNode, iconWidth, iconHeight, selectTheme->GetMenuIconColor(), useDefaultThemeIco… in UpdateImageIcon()
1366 … auto iconHeight = isStart ? selectTheme->GetIconSideLength() : selectTheme->GetEndIconHeight(); in UpdateSymbolIcon() local
1371 UpdateIconSrc(iconNode, iconWidth, iconHeight, selectTheme->GetMenuIconColor(), false); in UpdateSymbolIcon()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/search/
H A Dsearch_layout_algorithm.cpp332 auto iconHeight = searchTheme->GetIconHeight().ConvertToPx(); in DividerMeasure() local
334 auto dividerHeight = std::min(static_cast<float>(searchHeight), static_cast<float>(iconHeight)); in DividerMeasure()