Home
last modified time | relevance | path

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

/frameworks/base/core/java/android/service/autofill/
DFillContext.java134 final SparseIntArray missingNodeIndexes = new SparseIntArray(ids.length); in findViewNodesByAutofillIds() local
143 missingNodeIndexes.put(i, /* ignored */ 0); in findViewNodesByAutofillIds()
146 missingNodeIndexes.put(i, /* ignored */ 0); in findViewNodesByAutofillIds()
155 while (missingNodeIndexes.size() > 0 && !nodesToProcess.isEmpty()) { in findViewNodesByAutofillIds()
158 for (int i = 0; i < missingNodeIndexes.size(); i++) { in findViewNodesByAutofillIds()
159 final int index = missingNodeIndexes.keyAt(i); in findViewNodesByAutofillIds()
171 missingNodeIndexes.removeAt(i); in findViewNodesByAutofillIds()
182 for (int i = 0; i < missingNodeIndexes.size(); i++) { in findViewNodesByAutofillIds()
184 mViewNodeLookupTable = new ArrayMap<>(missingNodeIndexes.size()); in findViewNodesByAutofillIds()
187 mViewNodeLookupTable.put(ids[missingNodeIndexes.keyAt(i)], null); in findViewNodesByAutofillIds()