Home
last modified time | relevance | path

Searched refs:hint (Results 1 – 4 of 4) sorted by relevance

/cts/tests/inputmethod/src/android/view/inputmethod/cts/
DExtractedTextTest.java47 SpannableStringBuilder hint = new SpannableStringBuilder("hint"); in testWriteToParcel() local
48 hint.setSpan(new StyleSpan(Typeface.BOLD), 1, 3, Spanned.SPAN_INCLUSIVE_INCLUSIVE); in testWriteToParcel()
49 extractedText.hint = hint; in testWriteToParcel()
61 assertEquals(extractedText.hint.toString(), target.hint.toString()); in testWriteToParcel()
62 final Spannable hintText = (Spannable) extractedText.hint; in testWriteToParcel()
/cts/tests/tests/systemui/src/android/systemui/cts/
DLightBarTestBase.java176 protected void assertMoreThan(String what, float expected, float actual, String hint) { in assertMoreThan() argument
179 + "%; " + hint); in assertMoreThan()
183 protected void assertLessThan(String what, float expected, float actual, String hint) { in assertLessThan() argument
186 + "%; " + hint); in assertLessThan()
/cts/tests/autofillservice/src/android/autofillservice/cts/
DHelper.java391 public static ViewNode findNodeByAutofillHint(ViewNode node, String hint) { in findNodeByAutofillHint() argument
392 return findNodeByFilter(node, hint, AUTOFILL_HINT_FILTER); in findNodeByAutofillHint()
455 public static View findViewByAutofillHint(Activity activity, String hint) { in findViewByAutofillHint() argument
457 return findViewByAutofillHint(rootView, hint); in findViewByAutofillHint()
464 public static View findViewByAutofillHint(View view, String hint) { in findViewByAutofillHint() argument
465 if (AUTOFILL_HINT_VIEW_FILTER.matches(view, hint)) return view; in findViewByAutofillHint()
469 final View child = findViewByAutofillHint(group.getChildAt(i), hint); in findViewByAutofillHint()
/cts/tests/tests/widget/src/android/widget/cts/
DDialerFilterTest.java402 text1.setId(android.R.id.hint); in createMyDialerFilter()