Home
last modified time | relevance | path

Searched refs:startPoints (Results 1 - 18 of 18) sorted by relevance

/foundation/window/window_manager/dmserver/test/unittest/
H A Dabstract_screen_controller_test.cpp680 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 Ddisplay_manager_service_test.cpp366 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 Ddisplay_manager_service.cpp676 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 Dabstract_screen.cpp598 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 Dabstract_screen_controller.cpp1103 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 Dabstract_screen_controller.h73 bool MakeExpand(std::vector<ScreenId> screenIds, std::vector<Point> startPoints);
113 const std::vector<Point>& startPoints, bool filterScreen, ScreenCombination combination);
H A Dabstract_screen.h117 bool AddChildren(std::vector<sptr<AbstractScreen>>& dmsScreens, std::vector<Point>& startPoints);
H A Ddisplay_manager_service.h100 DMError MakeExpand(std::vector<ScreenId> screenId, std::vector<Point> startPoints,
H A Ddisplay_manager_interface.h150 virtual DMError MakeExpand(std::vector<ScreenId> screenId, std::vector<Point> startPoints,
/foundation/window/window_manager/window_scene/screen_session_manager/src/
H A Dmulti_screen_manager.cpp168 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 Dscreen_session_manager.cpp3881 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 Dscreen_manager.cpp445 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 Dscreen_session_test.cpp1329 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 Dscreen_session_manager_test.cpp1435 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 Dscreen_session_manager_interface.h116 virtual DMError MakeExpand(std::vector<ScreenId> screenId, std::vector<Point> startPoints,
/foundation/window/window_manager/window_scene/session/screen/include/
H A Dscreen_session.h273 bool AddChildren(std::vector<sptr<ScreenSession>>& smsScreens, std::vector<Point>& startPoints);
/foundation/window/window_manager/window_scene/session/screen/src/
H A Dscreen_session.cpp1280 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 Dscreen_session_manager.h162 const std::vector<Point>& startPoints, bool filterScreen, ScreenCombination combination);

Completed in 35 milliseconds