Home
last modified time | relevance | path

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

/packages/apps/Car/Settings/tests/unit/src/com/android/car/settings/profiles/
DProfileDetailsActionButtonsPreferenceControllerTest.java161 List<UserInfo> otherUsers = new ArrayList<>(); in onStart_isAdminViewingSelf_manageOtherProfilesButtonShown() local
162 otherUsers.add(userInfo); in onStart_isAdminViewingSelf_manageOtherProfilesButtonShown()
165 when(mMockProfileHelper.getAllLivingProfiles(any())).thenReturn(otherUsers); in onStart_isAdminViewingSelf_manageOtherProfilesButtonShown()
181 List<UserInfo> otherUsers = new ArrayList<>(); in onStart_isAdminViewingOther_manageOtherProfilesButtonHidden() local
182 otherUsers.add(userInfo); in onStart_isAdminViewingOther_manageOtherProfilesButtonHidden()
185 when(mMockProfileHelper.getAllLivingProfiles(any())).thenReturn(otherUsers); in onStart_isAdminViewingOther_manageOtherProfilesButtonHidden()
198 List<UserInfo> otherUsers = new ArrayList<>(); in onStart_isNonAdmin_addAProfileButtonShown() local
199 otherUsers.add(userInfo); in onStart_isNonAdmin_addAProfileButtonShown()
202 when(mMockProfileHelper.getAllLivingProfiles(any())).thenReturn(otherUsers); in onStart_isNonAdmin_addAProfileButtonShown()
217 List<UserInfo> otherUsers = new ArrayList<>(); in onStart_isAdmin_isOnlyProfile_makeAddAProfileButtonShown() local
[all …]
/packages/apps/Settings/src/com/android/settings/
DMainClear.java594 View otherUsers = mContentView.findViewById(R.id.other_users_present); in loadAccountList() local
596 otherUsers.setVisibility(hasOtherUsers ? View.VISIBLE : View.GONE); in loadAccountList()