11 references to Values
Microsoft.CodeAnalysis (3)
src\Dependencies\Collections\Segmented\ImmutableSegmentedDictionary`2.cs (3)
100ICollection<TValue> IDictionary<TKey, TValue>.Values => Values; 104IEnumerable<TValue> IReadOnlyDictionary<TKey, TValue>.Values => Values; 110ICollection IDictionary.Values => Values;
Microsoft.CodeAnalysis.UnitTests (5)
Collections\ImmutableSegmentedDictionaryTest.cs (5)
129Assert.Equal("b", dictionary.Values.Single()); 135Assert.Equal("b", dictionary.Values.Single()); 323Assert.False(map.Values.All((key, arg) => key == arg, "1")); 324Assert.True(map.Values.All((key, arg) => key.Length == arg, 1)); 326Assert.True(ImmutableSegmentedDictionary<int, int>.Empty.Values.All((_, _) => false, 0));
Roslyn.Test.PdbUtilities (3)
EditAndContinue\EditAndContinueTest.GenerationVerifier.cs (3)
219.. map.AnonymousTypes.Values.Select(t => t.Type.GetInternalSymbol()!), 220.. map.AnonymousDelegates.Values.Select(t => t.Delegate.GetInternalSymbol()!), 221.. map.AnonymousDelegatesWithIndexedNames.Values.SelectMany(t => t.Select(d => d.Type.GetInternalSymbol()!))