Home
last modified time | relevance | path

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

/aosp14/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/widget/
H A DAppEntitiesHeaderControllerTest.java62 mController.setAppEntity(0, mAppEntityInfo); in setUp()
116 mController.setAppEntity(-1, mAppEntityInfo); in setAppEntity_indexLessThanZero_shouldThrowArrayIndexOutOfBoundsException()
128 mController.setAppEntity(0, mAppEntityInfo).apply(); in setAppEntity_addAppToIndex0_shouldShowAppView1()
173 mController.setAppEntity(0, mAppEntityInfo) in removeAppEntity_removeIndex0_shouldNotShowAppView1()
174 .setAppEntity(1, mAppEntityInfo).apply(); in removeAppEntity_removeIndex0_shouldNotShowAppView1()
189 mController.setAppEntity(0, mAppEntityInfo) in clearAllAppEntities_shouldNotShowAllAppViews()
190 .setAppEntity(1, mAppEntityInfo) in clearAllAppEntities_shouldNotShowAllAppViews()
191 .setAppEntity(2, mAppEntityInfo).apply(); in clearAllAppEntities_shouldNotShowAllAppViews()
210 .setAppEntity(0, mAppEntityInfo) in apply_noAppEntitySet_shouldOnlyShowTitleAndEmptyView()
211 .setAppEntity(1, mAppEntityInfo) in apply_noAppEntitySet_shouldOnlyShowTitleAndEmptyView()
[all …]
/aosp14/frameworks/base/packages/SettingsLib/EntityHeaderWidgets/src/com/android/settingslib/widget/
H A DAppEntitiesHeaderController.java183 public AppEntitiesHeaderController setAppEntity(int index, in setAppEntity() method in AppEntitiesHeaderController