Home
last modified time | relevance | path

Searched refs:startPoints (Results 1 – 6 of 6) sorted by relevance

/foundation/windowmanager/dmserver/src/
Ddisplay_manager_service.cpp475 …ayManagerService::MakeExpand(std::vector<ScreenId> expandScreenIds, std::vector<Point> startPoints) in MakeExpand() argument
478 …if (expandScreenIds.empty() || startPoints.empty() || expandScreenIds.size() != startPoints.size()… in MakeExpand()
481 … static_cast<uint32_t>(expandScreenIds.size()), static_cast<uint32_t>(startPoints.size())); in MakeExpand()
498 …pandScreenIds.empty() && !abstractScreenController_->MakeExpand(allExpandScreenIds, startPoints)) { in MakeExpand()
Dabstract_screen.cpp340 …nGroup::AddChildren(std::vector<sptr<AbstractScreen>>& dmsScreens, std::vector<Point>& startPoints) in AddChildren() argument
343 if (size != startPoints.size()) { in AddChildren()
349 res = AddChild(dmsScreens[i], startPoints[i]) && res; in AddChildren()
Dabstract_screen_controller.cpp731 std::vector<Point> startPoints; in MakeMirror() local
732 startPoints.insert(startPoints.begin(), screens.size(), point); in MakeMirror()
736 …ChangeScreenGroup(group, screens, startPoints, filterMirroredScreen, ScreenCombination::SCREEN_MIR… in MakeMirror()
742 const std::vector<Point>& startPoints, bool filterScreen, ScreenCombination combination) in ChangeScreenGroup() argument
764 addChildPos.emplace_back(startPoints[i]); in ChangeScreenGroup()
810 …stractScreenController::MakeExpand(std::vector<ScreenId> screenIds, std::vector<Point> startPoints) in MakeExpand() argument
823 …ChangeScreenGroup(group, screenIds, startPoints, filterExpandScreen, ScreenCombination::SCREEN_EXP… in MakeExpand()
/foundation/windowmanager/dmserver/include/
Dabstract_screen_controller.h66 bool MakeExpand(std::vector<ScreenId> screenIds, std::vector<Point> startPoints);
95 const std::vector<Point>& startPoints, bool filterScreen, ScreenCombination combination);
Dabstract_screen.h88 … bool AddChildren(std::vector<sptr<AbstractScreen>>& dmsScreens, std::vector<Point>& startPoints);
/foundation/windowmanager/dm/src/
Dscreen_manager.cpp354 std::vector<Point> startPoints; in MakeExpand() local
360 startPoints.emplace_back(Point(option.startX_, option.startY_)); in MakeExpand()
362 …creenId group = SingletonContainer::Get<ScreenManagerAdapter>().MakeExpand(screenIds, startPoints); in MakeExpand()