Home
last modified time | relevance | path

Searched refs:GetChildById (Results 1 - 14 of 14) sorted by relevance

/foundation/arkui/ui_lite/test/uitest/test_view_zindex/
H A Dui_test_view_zindex.cpp150 UIView* zIndexView = container_->GetChildById(ID_CHANGE_MY_ZINDEX); in ClickZIndexBtn()
164 UIView* zIndexView = container_->GetChildById(ID_CHANGE_MY_ZINDEX); in ClickModifyBtn()
167 zIndexView = container_->GetChildById(ID_CHANGE_MY_ZINDEX); in ClickModifyBtn()
169 UIView* zIndexViewGroupTmp = container_->GetChildById(ID_ZINDEX_VIEW_VG); in ClickModifyBtn()
187 UIView* view5 = container_->GetChildById(ZINDEX_VIEW_GROUP[4].text); // 4 : the fifth view in ClickModifyBtn()
232 UIView* tmpView = container_->GetChildById(ID_CLICK_HINT); in UpdateClickHint()
283 UIView* zIndexViewGroupTmp = container_->GetChildById(ID_ZINDEX_VIEW_VG); in SetupChangeView()
290 UIView* tmpView = group->GetChildById(ZINDEX_VIEW_GROUP[2].text); in SetupChangeView()
/foundation/arkui/ui_lite/test/unittest/components/
H A Dui_view_group_unit_test.cpp387 UIView* targetLabel = group->GetChildById(VIEW_GROUP[0].text); // 0: label1=0 in HWTEST_F()
392 UIView* beforeLabel = group->GetChildById(VIEW_GROUP[7].text); // 7: label2=3 in HWTEST_F()
395 UIView* newRenderHead = group->GetChildById(VIEW_GROUP[1].text); // 7: label1=1 in HWTEST_F()
402 beforeLabel = group->GetChildById(VIEW_GROUP[11].text); // 11: label3=3 in HWTEST_F()
441 UIView* targetLabel = group->GetChildById(VIEW_GROUP[0].text); in HWTEST_F()
444 UIView* beforeLabel = group->GetChildById(VIEW_GROUP[11].text); // 11: label3=3 in HWTEST_F()
447 targetLabel = group->GetChildById(VIEW_GROUP[2].text); // 2: label1=2 in HWTEST_F()
449 beforeLabel = group->GetChildById(VIEW_GROUP[3].text); // 3: label1=3 in HWTEST_F()
453 beforeLabel = group->GetChildById(VIEW_GROUP[12].text); // 12: label5=0 in HWTEST_F()
456 targetLabel = group->GetChildById(VIEW_GROU in HWTEST_F()
[all...]
/foundation/arkui/ui_lite/test/uitest/test_view_group/
H A Dui_test_view_group.cpp228 UIViewGroup* vg = static_cast<UIViewGroup*>(container_->GetChildById("UIKit_ViewGroup_Test_AddRemove_001")); in AddView()
237 UIViewGroup* vg = static_cast<UIViewGroup*>(container_->GetChildById("UIKit_ViewGroup_Test_AddRemove_001")); in RemoveView()
238 UIView* view1 = container_->GetChildById("id_view1"); in RemoveView()
247 UIViewGroup* vg = static_cast<UIViewGroup*>(container_->GetChildById("UIKit_ViewGroup_Test_AddRemove_001")); in RemoveAndAddView()
248 UIView* view1 = container_->GetChildById("id_view1"); in RemoveAndAddView()
259 UIViewGroup* vg = static_cast<UIViewGroup*>(container_->GetChildById("UIKit_ViewGroup_Test_Add_Error_001")); in AddMultiParent()
269 UIViewGroup* vg = static_cast<UIViewGroup*>(container_->GetChildById("UIKit_ViewGroup_Test_Insert_Error_001")); in InsertMultiParent()
/foundation/arkui/ui_lite/test/autotest/src/
H A Dui_auto_test.cpp43 while (RootView::GetInstance()->GetChildById(UI_TEST_MAIN_LIST_ID) == nullptr) { in ResetMainMenu()
54 UIView* view = RootView::GetInstance()->GetChildById(id); in EnterSubMenu()
56 UIView* listView = RootView::GetInstance()->GetChildById(UI_TEST_MAIN_LIST_ID); in EnterSubMenu()
81 UIView* view = RootView::GetInstance()->GetChildById(id); in ClickViewById()
97 UIView* view = RootView::GetInstance()->GetChildById(id); in DragViewToHead()
117 UIView* view = RootView::GetInstance()->GetChildById(id); in DrageToView()
/foundation/arkui/ui_lite/test/uitest/test_rotate_input/
H A Dui_test_rotate_input.cpp342 UIView* hour = timePicker_->GetChildById("hour"); in UIKitRotateEventTimePicker005()
349 UIView* minute = timePicker_->GetChildById("minute"); in UIKitRotateEventTimePicker005()
356 UIView* second = timePicker_->GetChildById("second"); in UIKitRotateEventTimePicker005()
403 } else if (&view == timePicker_->GetChildById(UITimePicker::HOUR_LIST_NAME)) { in OnPress()
406 } else if (&view == timePicker_->GetChildById(UITimePicker::MIN_LIST_NAME)) { in OnPress()
409 } else if (&view == timePicker_->GetChildById(UITimePicker::SEC_LIST_NAME)) { in OnPress()
/foundation/arkui/ui_lite/frameworks/components/
H A Dui_view.cpp1075 UIView* UIView::GetChildById(const char* id) const in GetChildById() function in OHOS::UIView
1167 UIView* sib = parent_->GetChildById(id); in AlignLeftToSibling()
1179 UIView* sib = parent_->GetChildById(id); in AlignRightToSibling()
1191 UIView* sib = parent_->GetChildById(id); in AlignTopToSibling()
1203 UIView* sib = parent_->GetChildById(id); in AlignBottomToSibling()
1215 UIView* sib = parent_->GetChildById(id); in AlignHorCenterToSibling()
1228 UIView* sib = parent_->GetChildById(id); in AlignVerCenterToSibling()
1242 UIView* sib = parent_->GetChildById(id); in LayoutLeftToSibling()
1254 UIView* sib = parent_->GetChildById(id); in LayoutRightToSibling()
1266 UIView* sib = parent_->GetChildById(i in LayoutTopToSibling()
[all...]
H A Dui_view_group.cpp290 UIView* UIViewGroup::GetChildById(const char* id) const in GetChildById() function in OHOS::UIViewGroup
/foundation/arkui/ui_lite/interfaces/kits/components/
H A Dui_view_group.h212 UIView* GetChildById(const char* id) const override;
H A Dui_view.h1053 virtual UIView* GetChildById(const char* id) const;
/foundation/arkui/ui_lite/test/uitest/test_focus_manager/
H A Dui_test_focus_manager.cpp314 FocusManager::GetInstance()->RequestFocus(viewGroup1->GetChildById("1")); in UIKitFocusManagerTest001()
390 new ResetFocusOnClickListener(viewGroup1->GetChildById("1"))); in InitListeners()
/foundation/arkui/ui_lite/test/framework/src/
H A Dtest_case_list_adapter.cpp59 UIView* tempView = rootView_->GetChildById(g_uiTestId);
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/
H A Djs_view.h221 JSRef<JSObject> GetChildById(const std::string& viewId);
H A Djs_view.cpp308 info.SetReturnValue(GetChildById(viewId)); in FindChildById()
437 JSRef<JSObject> JSViewFullUpdate::GetChildById(const std::string& viewId) in GetChildById() function in OHOS::OHOS::Ace::Framework::JSViewFullUpdate
/foundation/arkui/ui_lite/test/uitest/test_edit_text/
H A Dcustom_input_method.cpp404 UIView* keyboardTmp = container_->GetChildById("keyboard"); in ChangeKeyboard()

Completed in 13 milliseconds