Searched refs:mAutofillManager (Results 1 – 6 of 6) sorted by relevance
56 private AutofillManager mAutofillManager; field in DefaultAutofillPreferenceControllerTest67 ReflectionHelpers.setField(mController, "mAutofillManager", mAutofillManager); in setUp()75 when(mAutofillManager.hasAutofillFeature()).thenReturn(false); in isAvailableIfHasFeatureAndSupported()78 when(mAutofillManager.hasAutofillFeature()).thenReturn(true); in isAvailableIfHasFeatureAndSupported()79 when(mAutofillManager.isAutofillSupported()).thenReturn(false); in isAvailableIfHasFeatureAndSupported()82 when(mAutofillManager.hasAutofillFeature()).thenReturn(true); in isAvailableIfHasFeatureAndSupported()83 when(mAutofillManager.isAutofillSupported()).thenReturn(true); in isAvailableIfHasFeatureAndSupported()
30 private final AutofillManager mAutofillManager; field in DefaultAutofillPreferenceController35 mAutofillManager = mContext.getSystemService(AutofillManager.class); in DefaultAutofillPreferenceController()40 return mAutofillManager != null in isAvailable()41 && mAutofillManager.hasAutofillFeature() in isAvailable()42 && mAutofillManager.isAutofillSupported(); in isAvailable()
46 private final AutofillManager mAutofillManager; field in DefaultAutofillPickerEntryPreferenceController51 mAutofillManager = context.getSystemService(AutofillManager.class); in DefaultAutofillPickerEntryPreferenceController()56 if (mAutofillManager != null && mAutofillManager.isAutofillSupported()) { in getAvailabilityStatus()
74 private AutofillManager mAutofillManager; field in DefaultAutofillPickerEntryPreferenceControllerTest80 Context.AUTOFILL_MANAGER_SERVICE, mAutofillManager); in setUp()114 when(mAutofillManager.isAutofillSupported()).thenReturn(false); in getAvailabilityStatus_autofillNotSupported_unsupportedOnDevice()121 when(mAutofillManager.isAutofillSupported()).thenReturn(true); in getAvailabilityStatus_autofillSupported_isAvailable()
80 private AutofillManager mAutofillManager; field in LanguageAndInputSettingsTest95 .thenReturn(mAutofillManager); in setUp()