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.java102 final SparseIntArray missingNodeIndexes = new SparseIntArray(ids.length); in findViewNodesByAutofillIds() local
111 missingNodeIndexes.put(i, /* ignored */ 0); in findViewNodesByAutofillIds()
114 missingNodeIndexes.put(i, /* ignored */ 0); in findViewNodesByAutofillIds()
123 while (missingNodeIndexes.size() > 0 && !nodesToProcess.isEmpty()) { in findViewNodesByAutofillIds()
126 for (int i = 0; i < missingNodeIndexes.size(); i++) { in findViewNodesByAutofillIds()
127 final int index = missingNodeIndexes.keyAt(i); in findViewNodesByAutofillIds()
139 missingNodeIndexes.removeAt(i); in findViewNodesByAutofillIds()
150 for (int i = 0; i < missingNodeIndexes.size(); i++) { in findViewNodesByAutofillIds()
152 mViewNodeLookupTable = new ArrayMap<>(missingNodeIndexes.size()); in findViewNodesByAutofillIds()
155 mViewNodeLookupTable.put(ids[missingNodeIndexes.keyAt(i)], null); in findViewNodesByAutofillIds()