Home
last modified time | relevance | path

Searched refs:nodesToProcess (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/java/android/service/autofill/
DFillContext.java98 final ArrayDeque<ViewNode> nodesToProcess = new ArrayDeque<>(); in findViewNodesByAutofillIds() local
120 nodesToProcess.add(mStructure.getWindowNodeAt(i).getRootViewNode()); in findViewNodesByAutofillIds()
123 while (missingNodeIndexes.size() > 0 && !nodesToProcess.isEmpty()) { in findViewNodesByAutofillIds()
124 final ViewNode node = nodesToProcess.removeFirst(); in findViewNodesByAutofillIds()
145 nodesToProcess.addLast(node.getChildAt(i)); in findViewNodesByAutofillIds()
/frameworks/base/services/autofill/java/com/android/server/autofill/
DHelper.java279 final ArrayDeque<ViewNode> nodesToProcess = new ArrayDeque<>(); in findViewNode() local
282 nodesToProcess.add(structure.getWindowNodeAt(i).getRootViewNode()); in findViewNode()
284 while (!nodesToProcess.isEmpty()) { in findViewNode()
285 final ViewNode node = nodesToProcess.removeFirst(); in findViewNode()
290 nodesToProcess.addLast(node.getChildAt(i)); in findViewNode()