Home
last modified time | relevance | path

Searched refs:boundingRects_ (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/window/window_manager/dmserver/src/
H A Ddisplay_cutout_controller.cpp68 if (boundingRects_.count(displayId) == 1) { in SetCutoutSvgPath()
69 boundingRects_[displayId].emplace_back(boundingRect); in SetCutoutSvgPath()
73 boundingRects_[displayId] = rectVec; in SetCutoutSvgPath()
82 if (boundingRects_.count(displayId) == 1) { in GetCutoutInfo()
236 if (boundingRects_.count(displayId) == 0) { in TransferBoundingRectsByRotation()
240 std::vector<DMRect> displayBoundingRects = boundingRects_[displayId]; in TransferBoundingRectsByRotation()
/ohos5.0/foundation/window/window_manager/dmserver/test/unittest/
H A Ddisplay_cutout_controller_test.cpp198 controller->boundingRects_[id] = emptyRects;
234 controller->boundingRects_[id] = dmRects;
235 ASSERT_FALSE(controller->boundingRects_.count(id) == 0);
236 ASSERT_FALSE(controller->boundingRects_[id].empty());
/ohos5.0/foundation/window/window_manager/utils/src/
H A Dcutout_info.cpp21 boundingRects_(boundingRects) in CutoutInfo()
43 WriteBoundingRectsVector(boundingRects_, parcel); in Marshalling()
/ohos5.0/foundation/window/window_manager/dmserver/include/
H A Ddisplay_cutout_controller.h74 std::map<DisplayId, std::vector<DMRect>> boundingRects_; variable