Searched refs:afm (Results 1 – 10 of 10) sorted by relevance
/frameworks/base/core/java/android/view/autofill/ |
D | AutofillManager.java | 1534 final AutofillManager afm = mAfm.get(); in setState() local 1535 if (afm != null) { in setState() 1536 afm.post(() -> afm.setState(enabled, resetSession, resetClient)); in setState() 1542 final AutofillManager afm = mAfm.get(); in autofill() local 1543 if (afm != null) { in autofill() 1544 afm.post(() -> afm.autofill(sessionId, ids, values)); in autofill() 1551 final AutofillManager afm = mAfm.get(); in authenticate() local 1552 if (afm != null) { in authenticate() 1553 afm.post(() -> afm.authenticate(sessionId, authenticationId, intent, fillInIntent)); in authenticate() 1560 final AutofillManager afm = mAfm.get(); in requestShowFillUi() local [all …]
|
/frameworks/base/core/java/android/service/autofill/ |
D | AutofillService.java | 429 final AutofillManager afm = getSystemService(AutofillManager.class); in getFillEventHistory() local 431 if (afm == null) { in getFillEventHistory() 434 return afm.getFillEventHistory(); in getFillEventHistory()
|
/frameworks/base/core/java/android/widget/ |
D | RadioGroup.java | 190 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in setCheckedId() local 191 if (afm != null) { in setCheckedId() 192 afm.notifyValueChanged(this); in setCheckedId()
|
D | TimePicker.java | 148 final AutofillManager afm = context.getSystemService(AutofillManager.class); in TimePicker() local 149 if (afm != null) { in TimePicker() 150 afm.notifyValueChanged(this); in TimePicker()
|
D | CompoundButton.java | 176 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in setChecked() local 177 if (afm != null) { in setChecked() 178 afm.notifyValueChanged(this); in setChecked()
|
D | DatePicker.java | 186 final AutofillManager afm = context.getSystemService(AutofillManager.class); in DatePicker() local 187 if (afm != null) { in DatePicker() 188 afm.notifyValueChanged(this); in DatePicker()
|
D | AdapterView.java | 926 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in selectionChanged() local 927 if (afm != null) { in selectionChanged() 928 afm.notifyValueChanged(this); in selectionChanged()
|
D | TextView.java | 9391 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in notifyAutoFillManagerAfterTextChangedIfNeeded() local 9392 if (afm != null) { in notifyAutoFillManagerAfterTextChangedIfNeeded() 9396 afm.notifyValueChanged(TextView.this); in notifyAutoFillManagerAfterTextChangedIfNeeded() 10300 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in canRequestAutofill() local 10301 if (afm != null) { in canRequestAutofill() 10302 return afm.isEnabled(); in canRequestAutofill() 10308 final AutofillManager afm = mContext.getSystemService(AutofillManager.class); in requestAutofill() local 10309 if (afm != null) { in requestAutofill() 10310 afm.requestAutofill(this); in requestAutofill()
|
/frameworks/base/core/java/android/app/ |
D | Activity.java | 1247 AutofillManager afm = getAutofillManager(); in onStart() local 1248 if (afm != null) { in onStart() 1249 afm.onVisibleForAutofill(); in onStart()
|
/frameworks/base/core/java/android/view/ |
D | View.java | 6933 AutofillManager afm = getAutofillManager(); 6934 if (afm != null) { 6942 afm.notifyViewEntered(this); 6945 afm.notifyViewExited(this); 12142 AutofillManager afm = getAutofillManager(); 12144 if (afm != null && getAutofillViewId() > LAST_APP_AUTOFILL_ID) { 12152 afm.notifyViewVisibilityChange(this, true); 12156 new VisibilityChangeForAutofillHandler(afm, this); 24999 private VisibilityChangeForAutofillHandler(@NonNull AutofillManager afm, 25001 mAfm = afm;
|