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