Searched defs:virtualId (Results 1 - 6 of 6) sorted by relevance

/frameworks/base/core/java/android/view/
H A DViewStructure.java322 * @param virtualId an opaque ID to the Android System; it's the same id used on
325 public abstract void setAutofillId(@NonNull AutofillId parentId, int virtualId); argument
H A DView.java8159 final int virtualId = values.keyAt(i);
8164 provider.performAction(virtualId, AccessibilityNodeInfo.ACTION_SET_TEXT, arguments);
8917 public boolean isVisibleToUserForAutofill(int virtualId) { argument
8921 final AccessibilityNodeInfo node = provider.createAccessibilityNodeInfo(virtualId);
8927 Log.w(VIEW_LOG_TAG, "isVisibleToUserForAutofill(" + virtualId + "): no provider");
[all...]
/frameworks/base/core/java/android/view/autofill/
H A DAutofillManager.java736 * @param virtualId id identifying the virtual child inside the parent view.
739 public void requestAutofill(@NonNull View view, int virtualId, @NonNull Rect absBounds) { argument
740 notifyViewEntered(view, virtualId, absBounds, FLAG_MANUAL_REQUEST);
879 * @param virtualId id identifying the virtual child inside the parent view.
882 public void notifyViewVisibilityChanged(@NonNull View view, int virtualId, boolean isVisible) { argument
883 notifyViewVisibilityChangedInternal(view, virtualId, isVisible, true);
890 * @param virtualId id identifying the virtual child inside the parent view.
894 private void notifyViewVisibilityChangedInternal(@NonNull View view, int virtualId, argument
898 final AutofillId id = virtual ? getAutofillId(view, virtualId)
932 * @param virtualId i
935 notifyViewEntered(@onNull View view, int virtualId, @NonNull Rect absBounds) argument
939 notifyViewEntered(View view, int virtualId, Rect bounds, int flags) argument
956 notifyViewEnteredLocked(View view, int virtualId, Rect bounds, int flags) argument
998 notifyViewExited(@onNull View view, int virtualId) argument
1009 notifyViewExitedLocked(@onNull View view, int virtualId) argument
1085 notifyValueChanged(View view, int virtualId, AutofillValue value) argument
1118 notifyViewClicked(@onNull View view, int virtualId) argument
1498 getAutofillId(View parent, int virtualId) argument
2436 findVirtualNodeByAccessibilityId(View view, int virtualId) argument
2728 onAutofillEvent(@onNull View view, int virtualId, @AutofillEventType int event) argument
[all...]
/frameworks/base/core/java/android/webkit/
H A DWebViewProvider.java340 default boolean isVisibleToUserForAutofill(@SuppressWarnings("unused") int virtualId) { argument
H A DWebView.java2940 public boolean isVisibleToUserForAutofill(int virtualId) { argument
2941 return mProvider.getViewDelegate().isVisibleToUserForAutofill(virtualId);
/frameworks/base/core/java/android/app/assist/
H A DAssistStructure.java1847 public void setAutofillId(@NonNull AutofillId parentId, int virtualId) { argument
1848 mNode.mAutofillId = new AutofillId(parentId, virtualId);

Completed in 121 milliseconds