Home
last modified time | relevance | path

Searched refs:afterDescendantsChild (Results 1 – 2 of 2) sorted by relevance

/frameworks/base/core/tests/coretests/src/android/widget/focus/
DDescendantFocusabilityTest.java53 assertTrue(a.afterDescendantsChild.isFocusable()); in testPreconditions()
76 assertTrue(a.afterDescendantsChild.isFocused()); in testAfterDescendants()
80 assertTrue(a.afterDescendantsChild.isFocused()); in testAfterDescendants()
125 a.afterDescendantsChild.requestFocus(); in testAfterDescendantsEnterTouchMode()
129 assertTrue(a.afterDescendantsChild.isFocused()); in testAfterDescendantsEnterTouchMode()
130 assertFalse(a.afterDescendantsChild.isInTouchMode()); in testAfterDescendantsEnterTouchMode()
132 TouchUtils.clickView(this, a.afterDescendantsChild); in testAfterDescendantsEnterTouchMode()
133 assertTrue(a.afterDescendantsChild.isInTouchMode()); in testAfterDescendantsEnterTouchMode()
DDescendantFocusability.java32 public Button afterDescendantsChild; field in DescendantFocusability
47 afterDescendantsChild = (Button) afterDescendants.getChildAt(0); in onCreate()