Home
last modified time | relevance | path

Searched refs:currentBorderWidth (Results 1 – 3 of 3) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/calendar_picker/
H A Dcalendar_picker_layout_algorithm.cpp103 BorderWidthProperty currentBorderWidth; in SelfMeasure() local
105 currentBorderWidth = *(layoutProperty->GetBorderWidthProperty()); in SelfMeasure()
107 currentBorderWidth.SetBorderWidth(theme->GetEntryBorderWidth()); in SelfMeasure()
111 width += currentBorderWidth.topDimen.value_or(theme->GetEntryBorderWidth()).ConvertToPx(); in SelfMeasure()
112 width += currentBorderWidth.bottomDimen.value_or(theme->GetEntryBorderWidth()).ConvertToPx(); in SelfMeasure()
118 height += currentBorderWidth.leftDimen.value_or(theme->GetEntryBorderWidth()).ConvertToPx(); in SelfMeasure()
119 … height += currentBorderWidth.rightDimen.value_or(theme->GetEntryBorderWidth()).ConvertToPx(); in SelfMeasure()
131 …auto flexHeight = height - currentBorderWidth.leftDimen.value_or(theme->GetEntryBorderWidth()).Con… in SelfMeasure()
132 … flexHeight -= currentBorderWidth.rightDimen.value_or(theme->GetEntryBorderWidth()).ConvertToPx(); in SelfMeasure()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text_field/
H A Dtext_field_pattern.cpp9060 BorderWidthProperty currentBorderWidth; in OnBackPressed() local
9062 CHECK_NULL_RETURN(layoutProperty, currentBorderWidth); in OnBackPressed()
9064 CHECK_NULL_RETURN(paintProperty, currentBorderWidth); in OnBackPressed()
9066 currentBorderWidth = *(layoutProperty->GetBorderWidthProperty()); in OnBackPressed()
9068 currentBorderWidth.SetBorderWidth(BORDER_DEFAULT_WIDTH); in OnBackPressed()
9070 return currentBorderWidth; in OnBackPressed()
H A Dtext_field_pattern.h292 …void UpdateAreaBorderStyle(BorderWidthProperty& currentBorderWidth, BorderWidthProperty& overCount…