Searched refs:nodesToProcess (Results 1 – 2 of 2) sorted by relevance
130 final LinkedList<ViewNode> nodesToProcess = new LinkedList<>(); in findViewNodesByAutofillIds() local152 nodesToProcess.add(mStructure.getWindowNodeAt(i).getRootViewNode()); in findViewNodesByAutofillIds()155 while (missingNodeIndexes.size() > 0 && !nodesToProcess.isEmpty()) { in findViewNodesByAutofillIds()156 final ViewNode node = nodesToProcess.removeFirst(); in findViewNodesByAutofillIds()177 nodesToProcess.addLast(node.getChildAt(i)); in findViewNodesByAutofillIds()
151 final ArrayDeque<ViewNode> nodesToProcess = new ArrayDeque<>(); in findViewNode() local154 nodesToProcess.add(structure.getWindowNodeAt(i).getRootViewNode()); in findViewNode()156 while (!nodesToProcess.isEmpty()) { in findViewNode()157 final ViewNode node = nodesToProcess.removeFirst(); in findViewNode()162 nodesToProcess.addLast(node.getChildAt(i)); in findViewNode()