Home
last modified time | relevance | path

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

/ohos5.0/foundation/window/window_manager/wm/src/
H A Dwindow_impl.cpp270 if (subWindowMap_.find(parentId) == subWindowMap_.end()) { in GetSubWindow()
274 … return std::vector<sptr<Window>>(subWindowMap_[parentId].begin(), subWindowMap_[parentId].end()); in GetSubWindow()
291 if (subWindowMap_.count(GetWindowId()) == 0) { in UpdateConfigurationSync()
295 for (auto& subWindow : subWindowMap_.at(GetWindowId())) { in UpdateConfigurationSync()
1545 auto& subWindows = subWindowMap_.at(GetWindowId()); in DestroySubWindow()
1553 subWindowMap_[GetWindowId()].clear(); in DestroySubWindow()
1554 subWindowMap_.erase(GetWindowId()); in DestroySubWindow()
1581 if (subWindowMap_.count(GetWindowId()) > 0) { in Destroy()
3446 if (subWindowMap_.count(GetWindowId()) == 0) { in UpdateConfiguration()
3449 for (auto& subWindow : subWindowMap_.at(GetWindowId())) { in UpdateConfiguration()
[all …]
/ohos5.0/foundation/window/window_manager/previewer/include/
H A Dwindow_impl.h290 static std::map<uint32_t, std::vector<sptr<WindowImpl>>> subWindowMap_; variable
/ohos5.0/foundation/window/window_manager/wm/include/
H A Dwindow_impl.h453 static std::map<uint32_t, std::vector<sptr<WindowImpl>>> subWindowMap_; variable
/ohos5.0/foundation/window/window_manager/previewer/src/
H A Dwindow_impl.cpp31 std::map<uint32_t, std::vector<sptr<WindowImpl>>> WindowImpl::subWindowMap_; member in OHOS::Rosen::WindowImpl