Home
last modified time | relevance | path

Searched refs:focusedId (Results 1 – 3 of 3) sorted by relevance

/cts/tests/autofillservice/src/android/autofillservice/cts/augmented/
DCannedAugmentedFillResponse.java92 final AutofillId focusedId = request.getFocusedId(); in asFillResponse() local
98 dataset = mDatasets.get(focusedId); in asFillResponse()
101 Log.d(TAG, "no dataset for field " + focusedId); in asFillResponse()
105 Log.d(TAG, "asFillResponse: id=" + focusedId + ", dataset=" + dataset); in asFillResponse()
125 rootView.setContentDescription(getContentDescriptionForUi(focusedId)); in asFillResponse()
133 Log.i(TAG, "Autofilling only value for " + focusedId + " as " + onlyValue); in asFillResponse()
135 values.add(new Pair<AutofillId, AutofillValue>(focusedId, onlyValue)); in asFillResponse()
DAugmentedUiBot.java63 public UiObject2 assertUiShown(@NonNull AutofillId focusedId, in assertUiShown() argument
65 Preconditions.checkNotNull(focusedId); in assertUiShown()
72 final String expectedContentDescription = getContentDescriptionForUi(focusedId); in assertUiShown()
DAugmentedHelper.java156 final AutofillId focusedId = request.getFocusedId(); in toString() local
157 if (focusedId != null) { in toString()
158 string.append(", focusedId=").append(focusedId); in toString()
169 static String getContentDescriptionForUi(@NonNull AutofillId focusedId) { in getContentDescriptionForUi() argument
170 return "ui_for_" + focusedId; in getContentDescriptionForUi()