Home
last modified time | relevance | path

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

/frameworks/base/packages/SettingsLib/tests/robotests/src/com/android/settingslib/widget/
DAppEntitiesHeaderControllerTest.java63 mController.setAppEntity(0, mAppEntityInfo); in setUp()
117 mController.setAppEntity(-1, mAppEntityInfo); in setAppEntity_indexLessThanZero_shouldThrowArrayIndexOutOfBoundsException()
124 mController.setAppEntity(AppEntitiesHeaderController.MAXIMUM_APPS + 1, mAppEntityInfo); in asetAppEntity_indexGreaterThanMaximum_shouldThrowArrayIndexOutOfBoundsException()
129 mController.setAppEntity(0, mAppEntityInfo).apply(); in setAppEntity_addAppToIndex0_shouldShowAppView1()
144 mController.setAppEntity(1, mAppEntityInfo).apply(); in setAppEntity_addAppToIndex1_shouldShowAppView2()
159 mController.setAppEntity(2, mAppEntityInfo).apply(); in setAppEntity_addAppToIndex2_shouldShowAppView3()
174 mController.setAppEntity(0, mAppEntityInfo) in removeAppEntity_removeIndex0_shouldNotShowAppView1()
175 .setAppEntity(1, mAppEntityInfo).apply(); in removeAppEntity_removeIndex0_shouldNotShowAppView1()
190 mController.setAppEntity(0, mAppEntityInfo) in clearAllAppEntities_shouldNotShowAllAppViews()
191 .setAppEntity(1, mAppEntityInfo) in clearAllAppEntities_shouldNotShowAllAppViews()
[all …]
/frameworks/base/packages/SettingsLib/EntityHeaderWidgets/src/com/android/settingslib/widget/
DAppEntitiesHeaderController.java183 public AppEntitiesHeaderController setAppEntity(int index, in setAppEntity() method in AppEntitiesHeaderController