Searched defs:autofillHints (Results 1 - 2 of 2) sorted by relevance

/frameworks/support/compat/java/android/support/v4/view/
H A DViewCompat.java454 public void setAutofillHints(@NonNull View v, @Nullable String... autofillHints) { argument
1557 public void setAutofillHints(@NonNull View v, @Nullable String... autofillHints) { argument
1558 v.setAutofillHints(autofillHints);
1877 * @param autofillHints The autofill hints to set. If the array is emtpy, {@code null} is set.
1880 public static void setAutofillHints(@NonNull View v, @Nullable String... autofillHints) { argument
1881 IMPL.setAutofillHints(v, autofillHints);
/frameworks/base/core/java/android/view/
H A DView.java5201 "Could not resolve autofillHints");
9545 * @param autofillHints The autofill hints to set. If the array is emtpy, {@code null} is set.
9548 public void setAutofillHints(@Nullable String... autofillHints) { argument
9549 if (autofillHints == null || autofillHints.length == 0) {
9552 mAutofillHints = autofillHints;

Completed in 77 milliseconds