Lines Matching refs:nodes
29 // During an update, this keeps track of all nodes that have been
31 // updated yet. It's an error if there are any pending nodes at the
35 // Keeps track of new nodes created during this update.
52 initial_state.nodes.push_back(root);
102 for (size_t i = 0; i < update.nodes.size(); ++i) {
103 if (!UpdateNode(update.nodes[i], &update_state))
108 error_ = "Nodes left pending by the update:";
117 for (size_t i = 0; i < update.nodes.size(); ++i) {
118 AXNode* node = GetFromId(update.nodes[i].id);
175 // First, delete nodes that used to be children of this node but aren't
183 // Now build a new children vector, reusing nodes when possible,
246 // This is a serious error - nodes should never be reparented.