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()
76 private AutofillManager mAutofillManager; field in DefaultAutofillPickerEntryPreferenceControllerTest82 Context.AUTOFILL_MANAGER_SERVICE, mAutofillManager); in setUp()164 when(mAutofillManager.isAutofillSupported()).thenReturn(false); in getAvailabilityStatus_autofillNotSupported_unsupportedOnDevice()171 when(mAutofillManager.isAutofillSupported()).thenReturn(false); in getAvailabilityStatus_autofillNotSupported_unsupportedOnDevice_zoneWrite()179 when(mAutofillManager.isAutofillSupported()).thenReturn(false); in getAvailabilityStatus_autofillNotSupported_unsupportedOnDevice_zoneRead()187 when(mAutofillManager.isAutofillSupported()).thenReturn(false); in getAvailabilityStatus_autofillNotSupported_unsupportedOnDevice_zoneHidden()195 when(mAutofillManager.isAutofillSupported()).thenReturn(true); in getAvailabilityStatus_autofillSupported_isAvailable()202 when(mAutofillManager.isAutofillSupported()).thenReturn(true); in getAvailabilityStatus_autofillSupported_isAvailable_zoneWrite()210 when(mAutofillManager.isAutofillSupported()).thenReturn(true); in getAvailabilityStatus_autofillSupported_isAvailable_zoneRead()218 when(mAutofillManager.isAutofillSupported()).thenReturn(true); in getAvailabilityStatus_autofillSupported_isAvailable_zoneHidden()
21 mAutofillManager = autofillManager; in AutofillManagerCompat()24 private final AutofillManager mAutofillManager; field in AutofillManagerCompat27 return mAutofillManager.hasAutofillFeature(); in hasAutofillFeature()
46 private final AutofillManager mAutofillManager; field in DefaultAutofillPickerEntryPreferenceController51 mAutofillManager = context.getSystemService(AutofillManager.class); in DefaultAutofillPickerEntryPreferenceController()56 if (mAutofillManager != null && mAutofillManager.isAutofillSupported()) { in getDefaultAvailabilityStatus()
55 private final AutofillManager mAutofillManager; field in DefaultCombinedPreferenceController63 mAutofillManager = mContext.getSystemService(AutofillManager.class); in DefaultCombinedPreferenceController()74 return mAutofillManager != null in isAvailable()76 && mAutofillManager.hasAutofillFeature() in isAvailable()77 && mAutofillManager.isAutofillSupported(); in isAvailable()