Searched refs:otherUsers (Results 1 – 2 of 2) sorted by relevance
158 List<UserInfo> otherUsers = new ArrayList<>(); in onStart_isAdminViewingSelf_makeManageOtherProfilesButtonShown() local159 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() local177 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() local194 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 …]
542 View otherUsers = mContentView.findViewById(R.id.other_users_present); in loadAccountList() local544 otherUsers.setVisibility(hasOtherUsers ? View.VISIBLE : View.GONE); in loadAccountList()