Searched defs:autofillId (Results 1 - 7 of 7) sorted by relevance

/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DHelper.java147 * Finds the {@link ViewNode} that has the requested {@code autofillId}, if any.
151 @NonNull AutofillId autofillId) {
153 return autofillId.equals(node.getAutofillId());
150 findViewNodeByAutofillId(@onNull AssistStructure structure, @NonNull AutofillId autofillId) argument
H A DAutofillManagerService.java877 public int startSession(IBinder activityToken, IBinder appCallback, AutofillId autofillId, argument
883 autofillId = Preconditions.checkNotNull(autofillId, "autoFillId");
898 autofillId, bounds, value, hasCallback, componentName, compatMode,
H A DAutofillManagerServiceImpl.java343 @NonNull IBinder appCallbackToken, @NonNull AutofillId autofillId,
384 + " u=" + mUserId + " i=" + autofillId + " b=" + virtualBounds
388 newSession.updateLocked(autofillId, virtualBounds, value, ACTION_START_SESSION, flags);
580 boolean updateSessionLocked(int sessionId, int uid, AutofillId autofillId, Rect virtualBounds, argument
587 + autofillId);
598 session.updateLocked(autofillId, virtualBounds, value, action, flags);
342 startSessionLocked(@onNull IBinder activityToken, int uid, @NonNull IBinder appCallbackToken, @NonNull AutofillId autofillId, @NonNull Rect virtualBounds, @Nullable AutofillValue value, boolean hasCallback, @NonNull ComponentName componentName, boolean compatMode, boolean bindInstantServiceAllowed, int flags) argument
/frameworks/base/core/java/android/view/autofill/
H A DAutofillManager.java480 * @param autofillId The autofill id of the views to find
484 @Nullable View autofillClientFindViewByAutofillIdTraversal(@NonNull AutofillId autofillId); argument
2071 Log.v(TAG, "notifyNoFillUi(): sessionId=" + sessionId + ", autofillId=" + id
2104 * @param autofillId The autofill id of the view
2108 private View findView(@NonNull AutofillId autofillId) { argument
2111 return client.autofillClientFindViewByAutofillIdTraversal(autofillId);
/frameworks/base/core/java/android/app/
H A DActivity.java7690 @NonNull AutofillId[] autofillId) {
7691 final View[] views = new View[autofillId.length];
7699 final int viewCount = autofillId.length;
7703 autofillId[viewNum].getViewId());
7715 public final View autofillClientFindViewByAutofillIdTraversal(AutofillId autofillId) { argument
7722 final View view = rootView.findViewByAutofillIdTraversal(autofillId.getViewId());
7739 final AutofillId autofillId = autofillIds[i];
7740 final View view = autofillClientFindViewByAutofillIdTraversal(autofillId);
7742 if (!autofillId.isVirtual()) {
7745 visible[i] = view.isVisibleToUserForAutofill(autofillId
7689 autofillClientFindViewsByAutofillIdTraversal( @onNull AutofillId[] autofillId) argument
[all...]
/frameworks/base/core/java/android/view/
H A DViewGroup.java1435 public View findViewByAutofillIdTraversal(int autofillId) { argument
1436 View foundView = super.findViewByAutofillIdTraversal(autofillId);
1445 foundView = child.findViewByAutofillIdTraversal(autofillId);
H A DView.java18657 Log.d(VIEW_LOG_TAG, "onRestoreInstanceState(): not setting autofillId to "
22712 * @param autofillId The autofill id.
22716 public <T extends View> T findViewByAutofillIdTraversal(int autofillId) { argument
22717 if (getAutofillViewId() == autofillId) {
[all...]

Completed in 124 milliseconds