Searched refs:otherUsers (Results 1 – 2 of 2) sorted by relevance
161 List<UserInfo> otherUsers = new ArrayList<>(); in onStart_isAdminViewingSelf_manageOtherProfilesButtonShown() local162 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() local182 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() local199 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 …]
594 View otherUsers = mContentView.findViewById(R.id.other_users_present); in loadAccountList() local596 otherUsers.setVisibility(hasOtherUsers ? View.VISIBLE : View.GONE); in loadAccountList()