Searched refs:virtualBounds (Results 1 – 5 of 5) sorted by relevance
/aosp12/frameworks/base/core/java/android/view/autofill/ |
H A D | AutofillPopupWindow.java | 108 Rect virtualBounds) { in update() argument 139 } else if (virtualBounds != null) { in update() 140 final int[] mLocationOnScreen = new int[] {virtualBounds.left, virtualBounds.top}; in update() 207 virtualBounds.left, virtualBounds.top, in update() 208 virtualBounds.right, virtualBounds.bottom); in update()
|
H A D | AutofillManager.java | 623 @Nullable Rect virtualBounds, IAutofillWindowPresenter presenter); in autofillClientRequestShowFillUi() argument
|
/aosp12/frameworks/base/services/autofill/java/com/android/server/autofill/ |
H A D | ViewState.java | 190 void update(@Nullable AutofillValue autofillValue, @Nullable Rect virtualBounds, int flags) { in update() argument 194 if (virtualBounds != null) { in update() 195 mVirtualBounds = virtualBounds; in update()
|
H A D | AutofillManagerServiceImpl.java | 313 @NonNull Rect virtualBounds, @Nullable AutofillValue value, boolean hasCallback, in startSessionLocked() argument 373 + " u=" + mUserId + " i=" + autofillId + " b=" + virtualBounds in startSessionLocked() 377 newSession.updateLocked(autofillId, virtualBounds, value, ACTION_START_SESSION, flags); in startSessionLocked() 589 boolean updateSessionLocked(int sessionId, int uid, AutofillId autofillId, Rect virtualBounds, in updateSessionLocked() argument 607 session.updateLocked(autofillId, virtualBounds, value, action, flags); in updateSessionLocked()
|
H A D | Session.java | 2742 void updateLocked(AutofillId id, Rect virtualBounds, AutofillValue value, int action, 2795 viewState.update(value, virtualBounds, flags); 2838 if (sVerbose && virtualBounds != null) { 2839 Slog.v(TAG, "entered on virtual child " + id + ": " + virtualBounds); 2889 viewState.update(value, virtualBounds, flags);
|