Home
last modified time | relevance | path

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

/aosp14/frameworks/base/core/tests/coretests/src/android/view/
H A DViewGroupAttributesTest.java26 private MyViewGroup mViewGroup; field in ViewGroupAttributesTest
47 mViewGroup = new MyViewGroup(getContext()); in setUp()
53 ViewGroup.FOCUS_BEFORE_DESCENDANTS, mViewGroup.getDescendantFocusability()); in testDescendantFocusabilityEnum()
56 final boolean isAnimationCachEnabled = mViewGroup.isAnimationCacheEnabled(); in testDescendantFocusabilityEnum()
60 mViewGroup.setDescendantFocusability(ViewGroup.FOCUS_AFTER_DESCENDANTS); in testDescendantFocusabilityEnum()
61 assertEquals(ViewGroup.FOCUS_AFTER_DESCENDANTS, mViewGroup.getDescendantFocusability()); in testDescendantFocusabilityEnum()
63 mViewGroup.setDescendantFocusability(ViewGroup.FOCUS_BLOCK_DESCENDANTS); in testDescendantFocusabilityEnum()
64 assertEquals(ViewGroup.FOCUS_BLOCK_DESCENDANTS, mViewGroup.getDescendantFocusability()); in testDescendantFocusabilityEnum()
66 mViewGroup.setDescendantFocusability(ViewGroup.FOCUS_BEFORE_DESCENDANTS); in testDescendantFocusabilityEnum()
71 assertEquals(msg, isAnimationCachEnabled, mViewGroup.isAnimationCacheEnabled()); in testDescendantFocusabilityEnum()
[all …]
/aosp14/frameworks/base/core/tests/coretests/src/android/preference/
H A DPreferenceIconSpaceTest.java46 private ViewGroup mViewGroup; field in PreferenceIconSpaceTest
55 when(mViewGroup.findViewById(com.android.internal.R.id.icon_frame)) in setUp()
57 when(mViewGroup.findViewById(com.android.internal.R.id.icon)) in setUp()
66 mPreference.bindView(mViewGroup); in bindView_iconSpaceReserved_shouldReserveIconSpace()
75 mPreference.bindView(mViewGroup); in bindView_iconSpaceNotReserved_shouldNotReserveIconSpace()
84 mPreference.bindView(mViewGroup); in bindView_hasIcon_shouldDisplayIcon()
/aosp14/frameworks/base/packages/SystemUI/src/com/android/systemui/qs/
H A DPseudoGridView.java149 private final WeakReference<ViewGroup> mViewGroup; field in PseudoGridView.ViewGroupAdapterBridge
158 mViewGroup = new WeakReference<>(viewGroup); in ViewGroupAdapterBridge()
169 ViewGroup viewGroup = mViewGroup.get(); in refresh()