Home
last modified time | relevance | path

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

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/bubble/
H A Dbubble_pattern.cpp221 auto buttonRowNode = GetButtonRowNode(); in RegisterButtonOnHover() local
222 for (const auto& child : buttonRowNode->GetChildren()) { in RegisterButtonOnHover()
279 auto buttonRowNode = GetButtonRowNode(); in RegisterButtonOnTouch() local
280 for (const auto& child : buttonRowNode->GetChildren()) { in RegisterButtonOnTouch()
341 auto buttonRowNode = AceType::DynamicCast<FrameNode>(lastColumnNode->GetLastChild()); in GetButtonRowNode() local
342 CHECK_NULL_RETURN(buttonRowNode, nullptr); in GetButtonRowNode()
344 if (buttonRowNode->GetTag() != V2::ROW_ETS_TAG) { in GetButtonRowNode()
348 if (buttonRowNode->GetTag() != V2::FLEX_ETS_TAG) { in GetButtonRowNode()
352 if (buttonRowNode->GetChildren().empty()) { in GetButtonRowNode()
355 return buttonRowNode; in GetButtonRowNode()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pattern/bubble/
H A Dbubble_test_ng.cpp1174 auto buttonRowNode = pattern->GetButtonRowNode(); variable
1175 ASSERT_NE(buttonRowNode, nullptr);
1176 for (const auto& child : buttonRowNode->GetChildren()) {
2605 auto buttonRowNode = pattern->GetButtonRowNode(); variable
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/picker/
H A Ddatepicker_dialog_view.cpp336 auto buttonRowNode = AceType::DynamicCast<FrameNode>(buttonNode->GetFirstChild()); in CreateTitleIconNode() local
337 CHECK_NULL_VOID(buttonRowNode); in CreateTitleIconNode()
338 spinnerNode->MountToParent(buttonRowNode); in CreateTitleIconNode()