Home
last modified time | relevance | path

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

/developers/samples/android/input/autofill/AutofillFramework/kotlinApp/Application/src/main/java/com/example/android/autofillframework/multidatasetservice/model/
DFilledAutofillFieldCollection.kt35 @Expose private val hintMap: HashMap<String, FilledAutofillField> = HashMap<String, in <lambda>() constant in com.example.android.autofillframework.multidatasetservice.model.FilledAutofillFieldCollection
44 hintMap[autofillHint] = autofillField in <lambda>()
63 val savedAutofillValue = hintMap[hint] in <lambda>()
106 hintMap[autofillHint]?.let { savedAutofillValue -> in <lambda>()
/developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/data/source/local/
DLocalAutofillDataSource.java171 HashMap<String, FieldTypeWithHeuristics> hintMap = getFieldTypeByAutofillHints(); in getFieldTypeByAutofillHints() local
173 if (hintMap != null) { in getFieldTypeByAutofillHints()
174 fieldTypeMapCallback.onLoaded(hintMap); in getFieldTypeByAutofillHints()
214 HashMap<String, FieldTypeWithHeuristics> hintMap = new HashMap<>(); in getFieldTypeByAutofillHints() local
220 hintMap.put(hint.mAutofillHint, fieldType); in getFieldTypeByAutofillHints()
223 return hintMap; in getFieldTypeByAutofillHints()