9 references to AllValues
Microsoft.CodeAnalysis.CSharp (9)
Utilities\ValueSetFactory.DecimalValueSetFactory.cs (2)
17
IValueSet IValueSetFactory.AllValues => NumericValueSet<decimal>.
AllValues
(DecimalTC.Instance);
28
value.IsBad ? NumericValueSet<decimal>.
AllValues
(DecimalTC.Instance) : Related(relation, DecimalTC.Instance.FromConstantValue(value));
Utilities\ValueSetFactory.FloatingValueSet.cs (1)
33
numbers: NumericValueSet<TFloating>.
AllValues
(tc), hasNaN: true, tc);
Utilities\ValueSetFactory.NintValueSet.cs (1)
17
public static readonly NintValueSet AllValues = new NintValueSet(hasSmall: true, values: NumericValueSet<int>.
AllValues
(IntTC.DefaultInstance), hasLarge: true);
Utilities\ValueSetFactory.NonNegativeIntValueSetFactory.cs (1)
21
public IValueSet AllValues => NumericValueSet<int>.
AllValues
(IntTC.NonNegativeInstance);
Utilities\ValueSetFactory.NuintValueSet.cs (1)
17
public static readonly NuintValueSet AllValues = new NuintValueSet(values: NumericValueSet<uint>.
AllValues
(UIntTC.Instance), hasLarge: true);
Utilities\ValueSetFactory.NumericValueSet.cs (1)
134
return
AllValues
(_tc);
Utilities\ValueSetFactory.NumericValueSetFactory.cs (2)
23
IValueSet IValueSetFactory.AllValues => NumericValueSet<T>.
AllValues
(_tc);
53
value.IsBad ? NumericValueSet<T>.
AllValues
(_tc) : Related(relation, _tc.FromConstantValue(value));