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

12 3

  /developers/samples/android/input/autofill/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/app/
CreditCardExpirationDateCompoundView.java 25 import android.view.autofill.AutofillManager;
26 import android.view.autofill.AutofillValue;
102 // set by autofill(). Without this line, the view will not turn yellow when updated.
113 public void autofill(AutofillValue value) { method in class:CreditCardExpirationDateCompoundView
115 Log.w(TAG, "Ignoring autofill() because service sent a non-date value:" + value);
CreditCardExpirationDatePickerView.java 31 import android.view.autofill.AutofillValue;
98 public void autofill(AutofillValue value) { method in class:CreditCardExpirationDatePickerView
100 Log.w(TAG, "autofill(): invalid value " + value);
107 if (DEBUG) Log.d(TAG, "autofill(" + value + "): " + month + "/" + year);
  /frameworks/base/core/java/android/service/autofill/
AutofillServiceInfo.java 16 package android.service.autofill;
102 // Get the AutoFill metadata, if declared.
108 // Parse service info and get the <autofill-service> tag as an AttributeSet.
122 if (!"autofill-service".equals(parser.getName())) {
123 Log.e(TAG, "Meta-data does not start with autofill-service tag");
CharSequenceTransformation.java 17 package android.service.autofill;
19 import static android.view.autofill.Helper.sDebug;
28 import android.view.autofill.AutofillId;
99 + "field with autofill id" + id + ": " + e.getClass());
CustomDescription.java 17 package android.service.autofill;
19 import static android.view.autofill.Helper.sDebug;
37 * <p>This is useful when the autofill service needs to show a detailed view of what would be saved;
FillContext.java 17 package android.service.autofill;
19 import static android.view.autofill.Helper.sDebug;
31 import android.view.autofill.AutofillId;
39 * the {@link AutofillService autofill service} as both required to trigger a save
FillEventHistory.java 17 package android.service.autofill;
25 import android.view.autofill.AutofillManager;
57 * Not in parcel. The ID of the autofill session that created the {@link FillResponse}.
168 * A {@link FillResponse.Builder#setAuthentication(android.view.autofill.AutofillId[],
FillResponse.java 17 package android.service.autofill;
19 import static android.service.autofill.FillRequest.INVALID_REQUEST_ID;
20 import static android.view.autofill.Helper.sDebug;
30 import android.view.autofill.AutofillId;
146 * <p>When a user triggers autofill, the system launches the provided intent
148 * {@link android.view.autofill.AutofillManager#EXTRA_ASSIST_STRUCTURE screen
149 * content} and your {@link android.view.autofill.AutofillManager#EXTRA_CLIENT_STATE
152 * {@link android.view.autofill.AutofillManager#EXTRA_AUTHENTICATION_RESULT} extra
201 * <p>This is typically used when the service cannot autofill the view; for example, a
ImageTransformation.java 17 package android.service.autofill;
19 import static android.view.autofill.Helper.sDebug;
28 import android.view.autofill.AutofillId;
112 * Create a new builder for a autofill id and add a first option.
117 * @param resId resource id of the image (in the autofill service's package). The
130 * @param resId resource id of the image (in the autofill service's package). The
Dataset.java 17 package android.service.autofill;
19 import static android.view.autofill.Helper.sDebug;
26 import android.view.autofill.AutofillId;
27 import android.view.autofill.AutofillValue;
35 * A dataset object represents a group of key/value pairs used to autofill parts of a screen.
41 * with the whole dataset). When an autofill service returns datasets in a {@link FillResponse}
50 * @see android.service.autofill.AutofillService for more information and examples about the
51 * role of datasets in the autofill workflow.
170 * <p>When a user triggers autofill, the system launches the provided intent
172 * android.view.autofill.AutofillManager#EXTRA_ASSIST_STRUCTURE screen content}
    [all...]
SaveInfo.java 17 package android.service.autofill;
19 import static android.view.autofill.Helper.sDebug;
29 import android.view.autofill.AutofillId;
30 import android.view.autofill.AutofillManager;
31 import android.view.autofill.AutofillValue;
124 * <li>The user explicitly tapped the UI affordance asking to save data for autofill.
436 * <p>This allows an autofill service to customize the style and be
480 * import android.service.autofill.Validators;
507 * import android.service.autofill.Validators;
  /frameworks/base/core/java/android/view/autofill/
AutofillValue.java 17 package android.view.autofill;
23 import static android.view.autofill.Helper.sDebug;
38 * {@link android.service.autofill.AutofillService}.
53 * Gets the value to autofill a text field.
74 * Gets the value to autofill a toggable field.
95 * Gets the value to autofill a selection list field.
116 * Gets the value to autofill a date field.
256 * Creates a new {@link AutofillValue} to autofill a {@link View} representing a text field.
266 * Creates a new {@link AutofillValue} to autofill a {@link View} representing a toggable
276 * Creates a new {@link AutofillValue} to autofill a {@link View} representing a selectio
    [all...]
AutofillPopupWindow.java 17 package android.view.autofill;
19 import static android.view.autofill.Helper.sVerbose;
  /frameworks/base/services/autofill/java/com/android/server/autofill/
AutofillManagerServiceShellCommand.java 17 package com.android.server.autofill;
19 import static com.android.server.autofill.AutofillManagerService.RECEIVER_BUNDLE_EXTRA_SESSIONS;
24 import android.view.autofill.AutofillManager;
66 pw.println("AutoFill Service (autofill) commands:");
71 pw.println(" Gets the Autofill log level (off | debug | verbose).");
77 pw.println(" Sets the Autofill log level.");
Helper.java 17 package com.android.server.autofill;
23 import android.service.autofill.Dataset;
26 import android.view.autofill.AutofillId;
27 import android.view.autofill.AutofillValue;
40 * {@code cmd autofill set log_level debug}.
46 * {@code cmd autofill set log_level verbose}.
53 * <p>Can be modified using {@code cmd autofill set max_partitions}.
ViewState.java 17 package com.android.server.autofill;
19 import static android.service.autofill.FillRequest.FLAG_MANUAL_REQUEST;
20 import static com.android.server.autofill.Helper.sDebug;
21 import static com.android.server.autofill.Helper.sVerbose;
25 import android.service.autofill.FillResponse;
28 import android.view.autofill.AutofillId;
29 import android.view.autofill.AutofillValue;
68 /** User manually request autofill in this view, after it was already autofilled. */
  /frameworks/base/core/java/android/widget/
DatePicker.java 37 import android.view.autofill.AutofillManager;
38 import android.view.autofill.AutofillValue;
532 void autofill(AutofillValue value); method in interface:DatePicker.DatePickerDelegate
587 // The value that was passed to autofill() - it must be stored because it getAutofillValue()
589 // properly highlighted after autofill().
622 public final void autofill(AutofillValue value) { method in class:DatePicker.AbstractDatePickerDelegate
798 // This view is self-sufficient for autofill, so it needs to call
806 public void autofill(AutofillValue value) { method in class:DatePicker
809 mDelegate.autofill(value);
TimePicker.java 35 import android.view.autofill.AutofillManager;
36 import android.view.autofill.AutofillValue;
372 void autofill(AutofillValue value); method in interface:TimePicker.TimePickerDelegate
428 // The value that was passed to autofill() - it must be stored because it getAutofillValue()
430 // properly highlighted after autofill().
450 public final void autofill(AutofillValue value) { method in class:TimePicker.AbstractTimePickerDelegate
554 // This view is self-sufficient for autofill, so it needs to call
562 public void autofill(AutofillValue value) { method in class:TimePicker
565 mDelegate.autofill(value);
RadioGroup.java 27 import android.view.autofill.AutofillManager;
28 import android.view.autofill.AutofillValue;
70 // to sanitize autofill requests.
427 public void autofill(AutofillValue value) { method in class:RadioGroup
438 Log.w(VIEW_LOG_TAG, "RadioGroup.autoFill(): no child with index " + index);
  /developers/build/prebuilts/gradle/AutofillFramework/Application/src/main/java/com/example/android/autofillframework/app/
CreditCardExpirationDatePickerView.java 31 import android.view.autofill.AutofillValue;
98 public void autofill(AutofillValue value) { method in class:CreditCardExpirationDatePickerView
100 Log.w(TAG, "autofill(): invalid value " + value);
107 if (DEBUG) Log.d(TAG, "autofill(" + value + "): " + month + "/" + year);
  /packages/experimental/FilledApp/src/foo/bar/filled/
CustomLinearLayout.java 13 import android.view.autofill.AutofillManager;
14 import android.view.autofill.AutofillValue;
61 public void autofill(SparseArray<AutofillValue> values) { method in class:CustomLinearLayout
  /system/tools/hidl/
EnumType.cpp 57 value->autofill(prev, resolveToScalarType());
693 void EnumValue::autofill(const EnumValue *prev, const ScalarType *type) { function in class:android::EnumValue
  /frameworks/base/services/autofill/java/com/android/server/autofill/ui/
AutoFillUI.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;
31 import android.service.autofill.Dataset;
32 import android.service.autofill.FillResponse;
33 import android.service.autofill.SaveInfo;
34 import android.service.autofill.ValueFinder;
37 import android.view.autofill.AutofillId;
38 import android.view.autofill.AutofillManager;
39 import android.view.autofill.IAutofillWindowPresenter
    [all...]
  /cts/tests/tests/widget/src/android/widget/cts/
DatePickerTest.java 42 import android.view.autofill.AutofillValue;
320 datePicker.autofill(autofilledValue);
325 // Make sure autofill() is ignored when value is null.
327 datePicker.autofill((AutofillValue) null);
333 // Make sure autofill() is ignored when value is not a date.
335 datePicker.autofill(AutofillValue.forText("Y U NO IGNORE ME?"));
342 datePicker.autofill(autofilledValue); // 2012-12-21
TimePickerTest.java 43 import android.view.autofill.AutofillValue;
145 mTimePicker.autofill(autofilledValue);
151 // Make sure autofill() is ignored when value is null.
153 mTimePicker.autofill((AutofillValue) null);
159 // Make sure autofill() is ignored when value is not a date.
161 mTimePicker.autofill(AutofillValue.forText("Y U NO IGNORE ME?"));
168 mTimePicker.autofill(autofilledValue); // 04:20
172 mTimePicker.autofill(autofilledValue); // 04:20
    [all...]

Completed in 488 milliseconds

12 3