Home
last modified time | relevance | path

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

/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/ui/television/
DAllAppPermissionsFragment.java121 PreferenceGroup otherGroup = (PreferenceGroup) findPreference(KEY_OTHER); in getOtherGroup() local
122 if (otherGroup == null) { in getOtherGroup()
123 otherGroup = new PreferenceCategory(getPreferenceManager().getContext()); in getOtherGroup()
124 otherGroup.setKey(KEY_OTHER); in getOtherGroup()
125 otherGroup.setTitle(getString(R.string.other_permissions)); in getOtherGroup()
126 getPreferenceScreen().addPreference(otherGroup); in getOtherGroup()
128 return otherGroup; in getOtherGroup()
186 PreferenceGroup otherGroup = getOtherGroup(); in updateUi() local
187 if (prefs.indexOf(otherGroup) < 0) { in updateUi()
188 prefs.add(otherGroup); in updateUi()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/ui/auto/
DAutoAllAppPermissionsFragment.java111 PreferenceGroup otherGroup = new PreferenceCategory(getContext()); in updateUi() local
112 otherGroup.setKey(KEY_OTHER); in updateUi()
113 otherGroup.setTitle(R.string.other_permissions); in updateUi()
114 getPreferenceScreen().addPreference(otherGroup); in updateUi()
116 prefs.add(otherGroup); in updateUi()
120 otherGroup.removeAll(); in updateUi()
177 otherGroup.addPreference(getPreference(info, in updateUi()
184 getPreferenceScreen().removePreference(otherGroup); in updateUi()
/packages/modules/Permission/PermissionController/src/com/android/permissioncontroller/permission/ui/handheld/
DAllAppPermissionsFragment.java167 PreferenceGroup otherGroup = findPreference(KEY_OTHER); in updateUi() local
168 otherGroup.removeAll(); in updateUi()
172 getPreferenceScreen().addPreference(otherGroup); in updateUi()
199 if (otherGroup.getPreferenceCount() == 0) { in updateUi()
200 otherGroup.setVisible(false); in updateUi()
202 otherGroup.setVisible(true); in updateUi()
/packages/apps/TV/tests/common/src/com/android/tv/testing/
DComparatorTester.java171 for (List<Object> otherGroup : equalityGroups) { in doTestEqualsCompatibility()
172 for (Object other : otherGroup) { in doTestEqualsCompatibility()