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