4 instantiations of BoolValueSet
Microsoft.CodeAnalysis.CSharp (4)
Utilities\ValueSetFactory.BoolValueSet.cs (4)
17internal static readonly BoolValueSet AllValues = new BoolValueSet(hasFalse: true, hasTrue: true); 18internal static readonly BoolValueSet None = new BoolValueSet(hasFalse: false, hasTrue: false); 19internal static readonly BoolValueSet OnlyTrue = new BoolValueSet(hasFalse: false, hasTrue: true); 20internal static readonly BoolValueSet OnlyFalse = new BoolValueSet(hasFalse: true, hasTrue: false);
19 references to BoolValueSet
Microsoft.CodeAnalysis.CSharp (19)
Utilities\ValueSetFactory.BoolValueSet.cs (9)
17internal static readonly BoolValueSet AllValues = new BoolValueSet(hasFalse: true, hasTrue: true); 18internal static readonly BoolValueSet None = new BoolValueSet(hasFalse: false, hasTrue: false); 19internal static readonly BoolValueSet OnlyTrue = new BoolValueSet(hasFalse: false, hasTrue: true); 20internal static readonly BoolValueSet OnlyFalse = new BoolValueSet(hasFalse: true, hasTrue: false); 24public static BoolValueSet Create(bool hasFalse, bool hasTrue) 81BoolValueSet o = (BoolValueSet)other; 91BoolValueSet o = (BoolValueSet)other;
Utilities\ValueSetFactory.BoolValueSetFactory.cs (10)
24IValueSet IValueSetFactory.AllValues => BoolValueSet.AllValues; 26IValueSet IValueSetFactory.NoValues => BoolValueSet.None; 33return BoolValueSet.OnlyTrue; 35return BoolValueSet.OnlyFalse; 38return BoolValueSet.AllValues; 440 => BoolValueSet.None, 451 => BoolValueSet.OnlyFalse, 462 => BoolValueSet.OnlyTrue, 473 => BoolValueSet.AllValues, 55return value.IsBad ? BoolValueSet.AllValues : Related(relation, value.BooleanValue);