/foundation/window/window_manager/dmserver/test/unittest/ |
H A D | abstract_screen_controller_test.cpp | 680 std::vector<Point> startPoints; in HWTEST_F() local 684 startPoints.emplace_back(point); in HWTEST_F() 689 absController_->ChangeScreenGroup(group, screens, startPoints, true, ScreenCombination::SCREEN_ALONE); in HWTEST_F() 703 std::vector<Point> startPoints; in HWTEST_F() local 707 startPoints.emplace_back(point); in HWTEST_F() 713 absController_->ChangeScreenGroup(group, screens, startPoints, true, ScreenCombination::SCREEN_ALONE); in HWTEST_F() 741 std::vector<Point> startPoints; in HWTEST_F() local 744 ASSERT_EQ(false, absController_->MakeExpand(screenIds, startPoints)); in HWTEST_F() 756 std::vector<Point> startPoints; in HWTEST_F() local 763 ASSERT_EQ(false, absController_->MakeExpand(screenIds, startPoints)); in HWTEST_F() 1147 std::vector<Point> startPoints; HWTEST_F() local [all...] |
H A D | display_manager_service_test.cpp | 366 std::vector<Point> startPoints; in HWTEST_F() local 368 dms_->MakeExpand(expandScreenIds, startPoints, screenGroupId2); in HWTEST_F() 625 std::vector<Point> startPoints(1); in HWTEST_F() 627 auto ret = dms_->MakeExpand(expandScreenIds, startPoints, screenGroupId); in HWTEST_F() 639 std::vector<Point> startPoints(1); in HWTEST_F() 641 auto ret = dms_->MakeExpand(expandScreenIds, startPoints, screenGroupId); in HWTEST_F()
|
/foundation/window/window_manager/dmserver/src/ |
H A D | display_manager_service.cpp | 676 DMError DisplayManagerService::MakeExpand(std::vector<ScreenId> expandScreenIds, std::vector<Point> startPoints,
in MakeExpand() argument 683 if (expandScreenIds.empty() || startPoints.empty() || expandScreenIds.size() != startPoints.size()) {
in MakeExpand() 686 static_cast<uint32_t>(expandScreenIds.size()), static_cast<uint32_t>(startPoints.size()));
in MakeExpand() 695 pointsMap[expandScreenIds[i]] = startPoints[i];
in MakeExpand()
|
H A D | abstract_screen.cpp | 598 bool AbstractScreenGroup::AddChildren(std::vector<sptr<AbstractScreen>>& dmsScreens, std::vector<Point>& startPoints)
in AddChildren() argument 601 if (size != startPoints.size()) {
in AddChildren() 607 res = AddChild(dmsScreens[i], startPoints[i]) && res;
in AddChildren()
|
H A D | abstract_screen_controller.cpp | 1103 std::vector<Point> startPoints;
in MakeMirror() local 1104 startPoints.insert(startPoints.begin(), screens.size(), point);
in MakeMirror() 1108 ChangeScreenGroup(group, screens, startPoints, filterMirroredScreen, ScreenCombination::SCREEN_MIRROR);
in MakeMirror() 1155 const std::vector<Point>& startPoints, bool filterScreen, ScreenCombination combination)
in ChangeScreenGroup() 1177 addChildPos.emplace_back(startPoints[i]);
in ChangeScreenGroup() 1224 bool AbstractScreenController::MakeExpand(std::vector<ScreenId> screenIds, std::vector<Point> startPoints)
in MakeExpand() argument 1237 ChangeScreenGroup(group, screenIds, startPoints, filterExpandScreen, ScreenCombination::SCREEN_EXPAND);
in MakeExpand() 1154 ChangeScreenGroup(sptr<AbstractScreenGroup> group, const std::vector<ScreenId>& screens, const std::vector<Point>& startPoints, bool filterScreen, ScreenCombination combination) ChangeScreenGroup() argument
|
/foundation/window/window_manager/dmserver/include/ |
H A D | abstract_screen_controller.h | 73 bool MakeExpand(std::vector<ScreenId> screenIds, std::vector<Point> startPoints);
113 const std::vector<Point>& startPoints, bool filterScreen, ScreenCombination combination);
|
H A D | abstract_screen.h | 117 bool AddChildren(std::vector<sptr<AbstractScreen>>& dmsScreens, std::vector<Point>& startPoints);
|
H A D | display_manager_service.h | 100 DMError MakeExpand(std::vector<ScreenId> screenId, std::vector<Point> startPoints,
|
H A D | display_manager_interface.h | 150 virtual DMError MakeExpand(std::vector<ScreenId> screenId, std::vector<Point> startPoints,
|
/foundation/window/window_manager/window_scene/screen_session_manager/src/ |
H A D | multi_screen_manager.cpp | 168 std::vector<Point> startPoints; in VirtualScreenUniqueSwitch() local 169 startPoints.insert(startPoints.begin(), screenIds.size(), point); in VirtualScreenUniqueSwitch() 170 ScreenSessionManager::GetInstance().ChangeScreenGroup(group, screenIds, startPoints, in VirtualScreenUniqueSwitch()
|
H A D | screen_session_manager.cpp | 3881 std::vector<Point> startPoints; in SetMirror() local 3882 startPoints.insert(startPoints.begin(), screens.size(), point); in SetMirror() 3886 ChangeScreenGroup(group, screens, startPoints, filterMirroredScreen, ScreenCombination::SCREEN_MIRROR); in SetMirror() 3920 const std::vector<Point>& startPoints, bool filterScreen, ScreenCombination combination) in ChangeScreenGroup() 3942 addChildPos.emplace_back(startPoints[i]); in ChangeScreenGroup() 3919 ChangeScreenGroup(sptr<ScreenSessionGroup> group, const std::vector<ScreenId>& screens, const std::vector<Point>& startPoints, bool filterScreen, ScreenCombination combination) ChangeScreenGroup() argument
|
/foundation/window/window_manager/dm/src/ |
H A D | screen_manager.cpp | 445 std::vector<Point> startPoints;
in MakeExpand() local 451 startPoints.emplace_back(Point(option.startX_, option.startY_));
in MakeExpand() 453 DMError ret = SingletonContainer::Get<ScreenManagerAdapter>().MakeExpand(screenIds, startPoints, screenGroupId);
in MakeExpand()
|
/foundation/window/window_manager/window_scene/test/dms_unittest/ |
H A D | screen_session_test.cpp | 1329 std::vector<Point> startPoints; in HWTEST_F() local 1330 bool res = sessionGroup.AddChildren(smsScreens, startPoints); in HWTEST_F() 1345 std::vector<Point> startPoints(1); in HWTEST_F() 1346 bool res = sessionGroup.AddChildren(smsScreens, startPoints); in HWTEST_F()
|
H A D | screen_session_manager_test.cpp | 1435 std::vector<Point> startPoints; in HWTEST_F() local 1437 ASSERT_NE(DMError::DM_ERROR_RENDER_SERVICE_FAILED, ssm_->MakeExpand(mirrorScreenIds, startPoints, screenGroupId2)); in HWTEST_F()
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/zidl/ |
H A D | screen_session_manager_interface.h | 116 virtual DMError MakeExpand(std::vector<ScreenId> screenId, std::vector<Point> startPoints,
|
/foundation/window/window_manager/window_scene/session/screen/include/ |
H A D | screen_session.h | 273 bool AddChildren(std::vector<sptr<ScreenSession>>& smsScreens, std::vector<Point>& startPoints);
|
/foundation/window/window_manager/window_scene/session/screen/src/ |
H A D | screen_session.cpp | 1280 bool ScreenSessionGroup::AddChildren(std::vector<sptr<ScreenSession>>& smsScreens, std::vector<Point>& startPoints) in AddChildren() argument 1283 if (size != startPoints.size()) { in AddChildren() 1289 res = AddChild(smsScreens[i], startPoints[i], nullptr) && res; in AddChildren()
|
/foundation/window/window_manager/window_scene/screen_session_manager/include/ |
H A D | screen_session_manager.h | 162 const std::vector<Point>& startPoints, bool filterScreen, ScreenCombination combination);
|