HomeSort by relevance Sort by last modified time
    Searched defs:autofill (Results 51 - 69 of 69) sorted by null

1 23

  /frameworks/base/core/java/android/widget/
AbsSpinner.java 30 import android.view.autofill.AutofillValue;
495 public void autofill(AutofillValue value) { method in class:AbsSpinner
CompoundButton.java 39 import android.view.autofill.AutofillManager;
40 import android.view.autofill.AutofillValue;
74 // to sanitize autofill requests.
585 public void autofill(AutofillValue value) { method in class:CompoundButton
TextView.java 147 import android.view.autofill.AutofillManager;
148 import android.view.autofill.AutofillValue;
771 // sanitize autofill requests.
10320 public void autofill(AutofillValue value) { method
    [all...]
  /frameworks/base/services/autofill/java/com/android/server/autofill/ui/
SaveUi.java 17 package com.android.server.autofill.ui;
19 import static com.android.server.autofill.Helper.sDebug;
20 import static com.android.server.autofill.Helper.sVerbose;
35 import android.service.autofill.CustomDescription;
36 import android.service.autofill.SaveInfo;
37 import android.service.autofill.ValueFinder;
48 import android.view.autofill.AutofillManager;
62 * Autofill Save Prompt
FillUi.java 16 package com.android.server.autofill.ui;
18 import static com.android.server.autofill.Helper.sDebug;
19 import static com.android.server.autofill.Helper.sVerbose;
29 import android.service.autofill.Dataset;
30 import android.service.autofill.FillResponse;
41 import android.view.autofill.AutofillId;
42 import android.view.autofill.AutofillValue;
43 import android.view.autofill.IAutofillWindowPresenter;
  /frameworks/base/core/java/android/view/autofill/
AutofillManager.java 17 package android.view.autofill;
19 import static android.service.autofill.FillRequest.FLAG_MANUAL_REQUEST;
20 import static android.view.autofill.Helper.sDebug;
21 import static android.view.autofill.Helper.sVerbose;
36 import android.service.autofill.AutofillService;
37 import android.service.autofill.FillEventHistory;
58 * Autofill Framework lifecycle.
60 * <p>The autofill lifecycle starts with the creation of an autofill context associated with an
61 * activity context; the autofill context is created when one of the following methods is called fo
1216 private void autofill(int sessionId, List<AutofillId> ids, List<AutofillValue> values) { method in class:AutofillManager
1828 public void autofill(int sessionId, List<AutofillId> ids, List<AutofillValue> values) { method in class:AutofillManager.AutofillManagerClient
    [all...]
  /frameworks/base/services/autofill/java/com/android/server/autofill/
Session.java 17 package com.android.server.autofill;
19 import static android.service.autofill.FillRequest.FLAG_MANUAL_REQUEST;
20 import static android.service.autofill.FillRequest.INVALID_REQUEST_ID;
23 import static android.view.autofill.AutofillManager.ACTION_START_SESSION;
24 import static android.view.autofill.AutofillManager.ACTION_VALUE_CHANGED;
25 import static android.view.autofill.AutofillManager.ACTION_VIEW_ENTERED;
26 import static android.view.autofill.AutofillManager.ACTION_VIEW_EXITED;
28 import static com.android.server.autofill.Helper.sDebug;
29 import static com.android.server.autofill.Helper.sPartitionMaxCount;
30 import static com.android.server.autofill.Helper.sVerbose
    [all...]
AutofillManagerService.java 17 package com.android.server.autofill;
22 import static com.android.server.autofill.Helper.bundleToString;
23 import static com.android.server.autofill.Helper.sDebug;
24 import static com.android.server.autofill.Helper.sPartitionMaxCount;
25 import static com.android.server.autofill.Helper.sVerbose;
54 import android.service.autofill.FillEventHistory;
59 import android.view.autofill.AutofillId;
60 import android.view.autofill.AutofillManager;
61 import android.view.autofill.AutofillManagerInternal;
62 import android.view.autofill.AutofillValue
    [all...]
AutofillManagerServiceImpl.java 17 package com.android.server.autofill;
19 import static android.service.autofill.FillRequest.FLAG_MANUAL_REQUEST;
20 import static android.view.autofill.AutofillManager.ACTION_START_SESSION;
21 import static android.view.autofill.AutofillManager.NO_SESSION;
23 import static com.android.server.autofill.Helper.sDebug;
24 import static com.android.server.autofill.Helper.sVerbose;
48 import android.service.autofill.AutofillService;
49 import android.service.autofill.AutofillServiceInfo;
50 import android.service.autofill.FillEventHistory;
51 import android.service.autofill.FillEventHistory.Event
    [all...]
RemoteFillService.java 17 package com.android.server.autofill;
19 import static android.service.autofill.FillRequest.INVALID_REQUEST_ID;
21 import static com.android.server.autofill.Helper.sDebug;
22 import static com.android.server.autofill.Helper.sVerbose;
38 import android.service.autofill.AutofillService;
39 import android.service.autofill.FillRequest;
40 import android.service.autofill.FillResponse;
41 import android.service.autofill.IAutoFillService;
42 import android.service.autofill.IFillCallback;
43 import android.service.autofill.ISaveCallback
    [all...]
  /cts/tests/autofillservice/src/android/autofillservice/cts/
VirtualContainerView.java 43 import android.view.autofill.AutofillManager;
44 import android.view.autofill.AutofillValue;
100 public void autofill(SparseArray<AutofillValue> values) { method in class:VirtualContainerView
101 Log.d(TAG, "autofill: " + values);
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/app/
CustomVirtualView.java 35 import android.view.autofill.AutofillManager;
36 import android.view.autofill.AutofillValue;
113 public void autofill(SparseArray<AutofillValue> values) { method in class:CustomVirtualView
116 // User has just selected a Dataset from the list of autofill suggestions.
121 if (DEBUG) Log.d(TAG, "autofill(): " + values);
142 // Finally, autofill it.
159 // Check if the type was properly set by the autofill service
186 // when it is time to find autofill suggestions.
195 // need to set the relevant autofill metadata and add it to the ViewStructure.
383 * @param autofillType {@link View#getAutofillType() autofill type} of the field
    [all...]
  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/app/
CustomVirtualView.java 35 import android.view.autofill.AutofillManager;
36 import android.view.autofill.AutofillValue;
113 public void autofill(SparseArray<AutofillValue> values) { method in class:CustomVirtualView
116 // User has just selected a Dataset from the list of autofill suggestions.
121 if (DEBUG) Log.d(TAG, "autofill(): " + values);
142 // Finally, autofill it.
159 // Check if the type was properly set by the autofill service
186 // when it is time to find autofill suggestions.
195 // need to set the relevant autofill metadata and add it to the ViewStructure.
383 * @param autofillType {@link View#getAutofillType() autofill type} of the field
    [all...]
  /frameworks/base/core/java/android/webkit/
WebViewProvider.java 45 import android.view.autofill.AutofillValue;
337 public default void autofill(SparseArray<AutofillValue>values) { method in interface:WebViewProvider.ViewDelegate
WebView.java 60 import android.view.autofill.AutofillValue;
2780 public void autofill(SparseArray<AutofillValue>values) { method in class:WebView
    [all...]
  /prebuilts/sdk/26/
android.jar 
  /prebuilts/sdk/27/
android.jar 
  /prebuilts/sdk/current/
android.jar 
  /prebuilts/sdk/system_current/
android.jar 

Completed in 940 milliseconds

1 23