HomeSort by relevance Sort by last modified time
    Searched defs:mAutofillManager (Results 1 - 15 of 15) sorted by null

  /packages/apps/Settings/src/com/android/settings/applications/defaultapps/
DefaultAutofillPreferenceController.java 30 private final AutofillManager mAutofillManager;
35 mAutofillManager = mContext.getSystemService(AutofillManager.class);
40 return mAutofillManager != null
41 && mAutofillManager.hasAutofillFeature()
42 && mAutofillManager.isAutofillSupported();
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/
MultiplePartitionsActivity.java 45 private AutofillManager mAutofillManager;
112 mAutofillManager.cancel();
115 mAutofillManager = getSystemService(AutofillManager.class);
ScrollableCustomVirtualView.java 74 mAutofillManager.notifyViewExited(this, mFocusedLine.mFieldTextItem.id);
VirtualSignInActivity.java 32 private AutofillManager mAutofillManager;
68 mAutofillManager.cancel();
71 mAutofillManager = getSystemService(AutofillManager.class);
StandardAutoCompleteSignInActivity.java 40 private AutofillManager mAutofillManager;
70 mAutofillManager = getSystemService(AutofillManager.class);
80 mAutofillManager.registerCallback(mAutofillCallback);
86 mAutofillManager.unregisterCallback(mAutofillCallback);
CustomVirtualView.java 73 protected final AutofillManager mAutofillManager;
100 mAutofillManager = context.getSystemService(AutofillManager.class);
464 mAutofillManager.notifyViewEntered(CustomVirtualView.this, mFieldTextItem.id,
468 mAutofillManager.notifyViewExited(CustomVirtualView.this, mFieldTextItem.id);
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/commoncases/
VirtualSignInActivity.java 36 private AutofillManager mAutofillManager;
67 mAutofillManager.cancel();
70 mAutofillManager = getSystemService(AutofillManager.class);
StandardAutoCompleteSignInActivity.java 43 private AutofillManager mAutofillManager;
72 mAutofillManager = getSystemService(AutofillManager.class);
82 mAutofillManager.registerCallback(mAutofillCallback);
88 mAutofillManager.unregisterCallback(mAutofillCallback);
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/edgecases/
MultiplePartitionsActivity.java 49 private AutofillManager mAutofillManager;
98 mAutofillManager = getSystemService(AutofillManager.class);
104 mAutofillManager.cancel();
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofill/app/view/autofillable/
ScrollableCustomVirtualView.java 74 mAutofillManager.notifyViewExited(this, mFocusedLine.mFieldTextItem.id);
CustomVirtualView.java 75 protected final AutofillManager mAutofillManager;
102 mAutofillManager = context.getSystemService(AutofillManager.class);
466 mAutofillManager.notifyViewEntered(CustomVirtualView.this, mFieldTextItem.id,
470 mAutofillManager.notifyViewExited(CustomVirtualView.this, mFieldTextItem.id);
  /packages/apps/Settings/tests/robotests/src/com/android/settings/applications/defaultapps/
DefaultAutofillPreferenceControllerTest.java 54 private AutofillManager mAutofillManager;
65 ReflectionHelpers.setField(mController, "mAutofillManager", mAutofillManager);
73 when(mAutofillManager.hasAutofillFeature()).thenReturn(false);
76 when(mAutofillManager.hasAutofillFeature()).thenReturn(true);
77 when(mAutofillManager.isAutofillSupported()).thenReturn(false);
80 when(mAutofillManager.hasAutofillFeature()).thenReturn(true);
81 when(mAutofillManager.isAutofillSupported()).thenReturn(true);
  /developers/samples/android/input/autofill/AutofillFramework/afservice/src/main/java/com/example/android/autofill/service/settings/
SettingsActivity.java 68 private AutofillManager mAutofillManager;
88 mAutofillManager = getSystemService(AutofillManager.class);
123 mAutofillManager.hasEnabledAutofillServices(),
324 if (mAutofillManager != null && mAutofillManager.hasEnabledAutofillServices()) {
325 mAutofillManager.disableAutofillServices();
334 if (mAutofillManager != null && !mAutofillManager.hasEnabledAutofillServices()) {
  /packages/apps/Settings/tests/robotests/src/com/android/settings/language/
LanguageAndInputSettingsTest.java 78 private AutofillManager mAutofillManager;
93 .thenReturn(mAutofillManager);
  /frameworks/base/core/java/android/app/
Activity.java     [all...]

Completed in 307 milliseconds