Home
last modified time | relevance | path

Searched refs:getAutofillId (Results 1 – 25 of 36) sorted by relevance

12

/frameworks/base/core/tests/coretests/src/android/app/assist/
DAssistStructureTest.java178 assertThat(rootView.getAutofillId()).isNotNull(); in assertStructureWithManySmallViews()
186 assertThat(title.getAutofillId()).isNotNull(); in assertStructureWithManySmallViews()
193 assertThat(parent.getAutofillId()).isNotNull(); in assertStructureWithManySmallViews()
231 assertThat(rootView.getAutofillId()).isNotNull(); in assertStructureWithOneBigView()
239 assertThat(title.getAutofillId()).isNotNull(); in assertStructureWithOneBigView()
246 assertThat(parent.getAutofillId()).isNotNull(); in assertStructureWithOneBigView()
268 viewStructure.setAutofillId(view.getAutofillId()); in testViewNodeParcelableForCredentialManager()
318 viewStructure.setAutofillId(view.getAutofillId()); in testViewNodeParcelableForAutofill()
338 viewStructure.setAutofillId(view.getAutofillId()); in testViewNodeParcelableControlFlags()
374 assertThat(view.getAutofillId()).isNotNull(); in assertSmallView()
[all …]
/frameworks/base/core/tests/coretests/src/android/view/contentcapture/
DContentCaptureSessionTest.java111 assertThat(mMockView.getAutofillId()).isNotNull(); // validity check in testNewViewStructure()
114 assertThat(structure.getAutofillId()).isEqualTo(mMockView.getAutofillId()); in testNewViewStructure()
123 assertThat(structure.getAutofillId()).isEqualTo(childId); in testNewVirtualViewStructure()
/frameworks/base/core/java/android/view/autofill/
DAutofillManager.java1507 + view.getAutofillId().toString()); in notifyVirtualViewsReady()
1513 + view.getAutofillId().toString()); in notifyVirtualViewsReady()
1521 notifyViewReadyInner(getAutofillId(view, virtualId), in notifyVirtualViewsReady()
1541 + v.getAutofillId().toString()); in notifyViewEnteredForFillDialog()
1547 + v.getAutofillId().toString()); in notifyViewEnteredForFillDialog()
1552 notifyViewReadyInner(v.getAutofillId(), v.getAutofillHints(), isCredmanRequested); in notifyViewEnteredForFillDialog()
1706 view, view.getAutofillId(), /* bounds= */ null, view.getAutofillValue(), flags); in notifyViewEntered()
1736 final AutofillId id = view.getAutofillId(); in notifyViewExitedLocked()
1789 final AutofillId id = virtual ? getAutofillId(view, virtualId) in notifyViewVisibilityChangedInternal()
1790 : view.getAutofillId(); in notifyViewVisibilityChangedInternal()
[all …]
DAutofillId.java100 return new AutofillId(host.getAutofillId(), virtualId); in create()
/frameworks/base/services/autofill/java/com/android/server/autofill/
DAutofillInlineSessionController.java149 if (mInlineFillUi != null && mInlineFillUi.getAutofillId().equals(autofillId)) { in disableFilterMatching()
176 if (mInlineFillUi != null && mInlineFillUi.getAutofillId().equals(autofillId)) { in filterInlineFillUiLocked()
DAutofillInlineSuggestionsRequestSession.java163 "onInlineSuggestionsResponseLocked called for:" + inlineFillUi.getAutofillId()); in onInlineSuggestionsResponseLocked()
169 mAutofillId = inlineFillUi.getAutofillId(); in onInlineSuggestionsResponseLocked()
DHelper.java203 return autofillId.equals(node.getAutofillId()); in findViewNodeByAutofillId()
286 ids.add(node.getAutofillId()); in addAutofillableIds()
/frameworks/base/core/java/android/credentials/
DGetCredentialResponse.java68 public AutofillId getAutofillId() { in getAutofillId() method in GetCredentialResponse
/frameworks/base/core/java/android/view/translation/
DUiTranslationController.java277 final AutofillId autofillId = view.getAutofillId(); in dumpViewInfo()
315 final AutofillId autofillId = result.getAutofillId(); in onTranslationCompleted()
423 final AutofillId autofillId = response.getAutofillId(); in onTranslationCompleted()
633 final AutofillId autofillId = view.getAutofillId(); in addViewIfNeeded()
653 ? view.getAutofillId() : " null")); in runForEachView()
DViewTranslationResponse.java80 public AutofillId getAutofillId() { in getAutofillId() method in ViewTranslationResponse
DViewTranslationRequest.java95 public AutofillId getAutofillId() { in getAutofillId() method in ViewTranslationRequest
/frameworks/base/core/java/android/service/assist/classification/
DFieldClassification.java99 public @NonNull AutofillId getAutofillId() { in getAutofillId() method in FieldClassification
/frameworks/base/core/java/android/view/contentcapture/
DViewNode.java220 public AutofillId getAutofillId() { in getAutofillId() method in ViewNode
667 mNode.mAutofillId = Objects.requireNonNull(view).getAutofillId(); in ViewStructureImpl()
670 mNode.mParentAutofillId = ((View) parent).getAutofillId(); in ViewStructureImpl()
915 public AutofillId getAutofillId() { in getAutofillId() method in ViewNode.ViewStructureImpl
DContentCaptureEvent.java509 pw.print(", mNode.id="); pw.print(mNode.getAutofillId()); in dump()
557 string.append(", id=").append(mNode.getAutofillId()); in toString()
/frameworks/base/core/java/android/view/
DViewStructure.java420 public abstract AutofillId getAutofillId(); in getAutofillId() method in ViewStructure
/frameworks/base/core/java/com/android/internal/inputmethod/
DInlineSuggestionsRequestInfo.java108 public @NonNull AutofillId getAutofillId() { in getAutofillId() method in InlineSuggestionsRequestInfo
/frameworks/base/core/java/android/service/autofill/
DFillContext.java130 if (id != null && id.equals(node.getAutofillId())) { in findViewNodesByAutofillIds()
/frameworks/base/core/java/android/inputmethodservice/
DInlineSuggestionSessionController.java249 imeClientPackageName) && match(inlineSuggestionsRequestInfo.getAutofillId(), in match()
/frameworks/base/apct-tests/perftests/autofill/src/android/view/autofill/
DMyAutofillService.java171 return node.getAutofillId(); in getAutofillIdByResourceId()
/frameworks/base/services/autofill/java/com/android/server/autofill/ui/
DInlineFillUi.java233 public AutofillId getAutofillId() { in getAutofillId() method in InlineFillUi
DDialogFillUi.java628 .append(view.getAutofillId());
DFillUi.java665 .append(view.getAutofillId()); in toString()
/frameworks/base/core/java/android/app/assist/
DAssistStructure.java1215 @Nullable public AutofillId getAutofillId() { in getAutofillId() method in AssistStructure.ViewNode
2235 public AutofillId getAutofillId() { in getAutofillId() method in AssistStructure.ViewNodeBuilder
2279 if (!ids.contains(getAutofillId())) { in setPendingCredentialRequest()
2280 ids.add(getAutofillId()); in setPendingCredentialRequest()
2642 AutofillId autofillId = node.getAutofillId(); in dump()
/frameworks/base/core/java/android/widget/
DTimePicker.java574 structure.setAutofillId(getAutofillId()); in dispatchProvideAutofillStructure()
DDatePicker.java822 structure.setAutofillId(getAutofillId()); in dispatchProvideAutofillStructure()

12