Searched defs:virtualBounds (Results 1 - 5 of 5) sorted by relevance

/frameworks/base/core/java/android/view/autofill/
H A DAutofillPopupWindow.java104 Rect virtualBounds) {
110 if (virtualBounds != null) {
114 location[0] = virtualBounds.left;
115 location[1] = virtualBounds.top;
177 virtualBounds.left, virtualBounds.top,
178 virtualBounds.right, virtualBounds.bottom);
103 update(View anchor, int offsetX, int offsetY, int width, int height, Rect virtualBounds) argument
H A DAutofillManager.java339 * @param virtualBounds The bounds of the virtual decendant of the anchor.
344 @Nullable Rect virtualBounds, IAutofillWindowPresenter presenter);
343 autofillCallbackRequestShowFillUi(@onNull View anchor, int width, int height, @Nullable Rect virtualBounds, IAutofillWindowPresenter presenter) argument
/frameworks/base/services/autofill/java/com/android/server/autofill/
H A DViewState.java154 void update(@Nullable AutofillValue autofillValue, @Nullable Rect virtualBounds, int flags) { argument
158 if (virtualBounds != null) {
159 mVirtualBounds = virtualBounds;
205 pw.print(prefix); pw.print("virtualBounds:" ); pw.println(mVirtualBounds);
H A DAutofillManagerServiceImpl.java285 @NonNull Rect virtualBounds, @Nullable AutofillValue value, boolean hasCallback,
303 + " u=" + mUserId + " i=" + autofillId + " b=" + virtualBounds + " hc=" +
307 newSession.updateLocked(autofillId, virtualBounds, value, ACTION_START_SESSION, flags);
469 boolean updateSessionLocked(int sessionId, int uid, AutofillId autofillId, Rect virtualBounds, argument
487 session.updateLocked(autofillId, virtualBounds, value, action, flags);
283 startSessionLocked(@onNull IBinder activityToken, int uid, @NonNull IBinder appCallbackToken, @NonNull AutofillId autofillId, @NonNull Rect virtualBounds, @Nullable AutofillValue value, boolean hasCallback, int flags, @NonNull ComponentName componentName) argument
H A DSession.java1247 void updateLocked(AutofillId id, Rect virtualBounds, AutofillValue value, int action, argument
1281 viewState.update(value, virtualBounds, flags);
1323 if (sVerbose && virtualBounds != null) {
1324 Slog.w(TAG, "entered on virtual child " + id + ": " + virtualBounds);
1335 viewState.update(value, virtualBounds, flags);

Completed in 350 milliseconds