/foundation/arkui/ui_lite/test/uitest/test_opacity/ |
H A D | ui_test_opacity.cpp | 329 UIViewGroup* group1 = new UIViewGroup(); in UIKitOpacityTestUIViewGroup001() local 330 group1->SetPosition(10, 30, (BUTTON_WIDTH << 1) + 50, (BUTTON_HEIGHT << 1) + 100); // 30 y 50: width 100: height in UIKitOpacityTestUIViewGroup001() 331 group1->SetStyle(STYLE_BACKGROUND_COLOR, (Color::Red()).full); in UIKitOpacityTestUIViewGroup001() 358 group1->Add(labelButton); in UIKitOpacityTestUIViewGroup001() 359 group1->Add(labelButton2); in UIKitOpacityTestUIViewGroup001() 360 group1->Add(button); in UIKitOpacityTestUIViewGroup001() 361 group1->Add(button2); in UIKitOpacityTestUIViewGroup001() 362 group1->Add(imageView); in UIKitOpacityTestUIViewGroup001() 363 group1->Add(group2); in UIKitOpacityTestUIViewGroup001() 365 group1 in UIKitOpacityTestUIViewGroup001() 420 UIScrollView* group1 = new UIScrollView(); UIKitOpacityTestUIScrollView001() local [all...] |
/foundation/communication/wifi/wifi/test/wifi_standard/wifi_framework/wifi_manage/unittest/ |
H A D | wifi_mock_p2p_service.cpp | 367 WifiP2pGroupInfo group1; in QueryP2pGroups() local 368 group1.SetGroupName("GroupName1"); in QueryP2pGroups() 384 group1.SetOwner(owner1); in QueryP2pGroups() 385 group1.SetIsGroupOwner(true); in QueryP2pGroups() 386 group1.SetPassphrase("Passphrase1"); in QueryP2pGroups() 387 group1.SetInterface("Interface1"); in QueryP2pGroups() 388 group1.SetGroupName("GroupName1"); in QueryP2pGroups() 389 group1.SetNetworkId(TEST_ONE_THOUSAND); in QueryP2pGroups() 390 group1.SetFrequency(TEST_ONE_THOUSAND); in QueryP2pGroups() 391 group1 in QueryP2pGroups() [all...] |
/foundation/arkui/ui_lite/test/uitest/test_ui_analog_clock/ |
H A D | ui_test_analog_clock.cpp | 170 UIViewGroup* group1 = new UIViewGroup(); in UIKitTestLineHandAnalogClock001() local 171 group1->SetPosition(0, 0); in UIKitTestLineHandAnalogClock001() 172 group1->SetWidth(Screen::GetInstance().GetWidth()); in UIKitTestLineHandAnalogClock001() 173 group1->SetHeight(Screen::GetInstance().GetHeight() + 100); // 100: height bigger value in UIKitTestLineHandAnalogClock001() 174 container_->Add(group1); in UIKitTestLineHandAnalogClock001() 177 group1->Add(label); in UIKitTestLineHandAnalogClock001() 184 group1->Add(clock1); in UIKitTestLineHandAnalogClock001() 202 CreateButtons001(group1, curFace, clock1); in UIKitTestLineHandAnalogClock001()
|
/foundation/graphic/graphic_2d/rosen/test/2d_engine/unittest/rosen_text/hm_symbol/ |
H A D | hm_symbol_run_test.cpp | 113 RSRenderGroup group1; in HWTEST_F() local 116 symbolInfo.renderGroups.push_back(group1); in HWTEST_F() 161 RSRenderGroup group1; in HWTEST_F() local 162 group1.color = color; in HWTEST_F() 164 symbolInfo.renderGroups.push_back(group1); in HWTEST_F()
|
/foundation/arkui/ui_lite/test/uitest/test_input_event/ |
H A D | ui_test_input_event.cpp | 229 UIViewGroup* group1 = new UIViewGroup(); in UIKitPointerInputTestDispatchInVisibleEvent001() local 230 uiViewGroup->Add(group1); in UIKitPointerInputTestDispatchInVisibleEvent001() 232 group1->SetPosition(positionX_, positionY_, TEST_VIEW_W + 20, TEST_VIEW_H + 20); in UIKitPointerInputTestDispatchInVisibleEvent001() 233 group1->SetStyle(STYLE_BACKGROUND_COLOR, Color::White().full); in UIKitPointerInputTestDispatchInVisibleEvent001() 234 group1->SetVisible(false); in UIKitPointerInputTestDispatchInVisibleEvent001() 236 group1->Add(testView); in UIKitPointerInputTestDispatchInVisibleEvent001()
|
/foundation/arkui/ace_engine/test/unittest/core/pattern/list/ |
H A D | list_layout_test_ng.cpp | 378 auto group1 = GetChildFrameNode(frameNode_, 1); in HWTEST_F() local 379 auto groupRect = group1->GetGeometryNode()->GetFrameRect(); in HWTEST_F() 381 auto item1Rect = GetChildRect(group1, 2); in HWTEST_F() 387 auto item2Rect = GetChildRect(group1, 3); in HWTEST_F() 391 group1 = GetChildFrameNode(frameNode_, 1); in HWTEST_F() 392 groupRect = group1->GetGeometryNode()->GetFrameRect(); in HWTEST_F() 394 item1Rect = GetChildRect(group1, 2); in HWTEST_F() 400 item2Rect = GetChildRect(group1, 3); in HWTEST_F() 435 auto group1 = GetChildFrameNode(frameNode_, 1); in HWTEST_F() local 436 groupPos = group1 in HWTEST_F() 1787 auto group1 = GetChildFrameNode(frameNode_, 1); HWTEST_F() local [all...] |
H A D | list_group_algorithm_test_ng.cpp | 984 // check group1 in HWTEST_F() 994 * @tc.expected: group0 item4 cached, group1 item0 cached, group2 item0-1 cached in HWTEST_F() 1215 * @tc.expected: current offset is 765, group0 and group1 layoutAlgorithm_ is nullptr. in HWTEST_F() 1222 auto group1 = GetChildFrameNode(frameNode_, 1); in HWTEST_F() local 1223 EXPECT_EQ(group1->layoutAlgorithm_, nullptr); in HWTEST_F()
|
/foundation/arkui/ui_lite/test/uitest/test_button/ |
H A D | ui_test_button.cpp | 241 UIViewGroup* group1 = CreateButtonGroup(250, 35, 100, 100, &checkBoxChangeListener1_, UI_TEST_CHECKBOX_2); in UIKitCheckBoxTest001() local 245 container_->Add(group1); in UIKitCheckBoxTest001() 264 UIViewGroup* group1 = CreateButtonGroup(250, 160, 100, 100, &radioChangeListener1_, UI_TEST_RADIO_BUTTON_2, in UIKitRadioButtonTest001() local 270 container_->Add(group1); in UIKitRadioButtonTest001() 290 UIViewGroup* group1 = CreateButtonGroup(250, 300, 100, 100, &toggleChangeListener1_, UI_TEST_TOGGLE_BUTTON_2, in UIKitToggleButtonTest001() local 296 container_->Add(group1); in UIKitToggleButtonTest001()
|