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.java158 List<UserInfo> otherUsers = new ArrayList<>(); in onStart_isAdminViewingSelf_makeManageOtherProfilesButtonShown() local
159 otherUsers.add(userInfo); in onStart_isAdminViewingSelf_makeManageOtherProfilesButtonShown()
162 when(mMockProfileHelper.getAllLivingProfiles(any())).thenReturn(otherUsers); in onStart_isAdminViewingSelf_makeManageOtherProfilesButtonShown()
176 List<UserInfo> otherUsers = new ArrayList<>(); in onStart_isAdminViewingOther_makeManageOtherProfilesButtonHidden() local
177 otherUsers.add(userInfo); in onStart_isAdminViewingOther_makeManageOtherProfilesButtonHidden()
180 when(mMockProfileHelper.getAllLivingProfiles(any())).thenReturn(otherUsers); in onStart_isAdminViewingOther_makeManageOtherProfilesButtonHidden()
193 List<UserInfo> otherUsers = new ArrayList<>(); in onStart_isNonAdmin_makeManageOtherProfilesButtonHidden() local
194 otherUsers.add(userInfo); in onStart_isNonAdmin_makeManageOtherProfilesButtonHidden()
197 when(mMockProfileHelper.getAllLivingProfiles(any())).thenReturn(otherUsers); in onStart_isNonAdmin_makeManageOtherProfilesButtonHidden()
210 List<UserInfo> otherUsers = new ArrayList<>(); in onStart_isOnlyProfile_makeAddAProfileButtonShown() local
[all …]
/packages/apps/Settings/src/com/android/settings/
DMainClear.java542 View otherUsers = mContentView.findViewById(R.id.other_users_present); in loadAccountList() local
544 otherUsers.setVisibility(hasOtherUsers ? View.VISIBLE : View.GONE); in loadAccountList()