Lines Matching defs:node
28 void AccessibilityConnection::NotifyAccessibilityWindowInfo(const sptr<WindowNode>& node, WindowUpdateType type)
30 if (node == nullptr) {
31 WLOGFE("window node is null");
34 auto container = windowRoot_->GetOrCreateWindowNodeContainer(node->GetDisplayId());
40 nodes.emplace_back(node);
89 for (auto& node : nodes) {
95 if (node == nullptr) {
96 WLOGFW("node is null");
99 info->wid_ = static_cast<int32_t>(node->GetWindowId());
100 info->windowRect_ = node->GetWindowRect();
101 info->focused_ = node->GetWindowId() == focusedWindow;
102 info->displayId_ = node->GetDisplayId();
103 info->layer_ = node->zOrder_;
104 info->mode_ = node->GetWindowMode();
105 info->type_ = node->GetWindowType();
106 auto property = node->GetWindowProperty();