1 type derived from ConstantValueOne
Microsoft.CodeAnalysis (1)
ConstantValueSpecialized.cs (1)
663
private sealed class ConstantValueDecimalOne :
ConstantValueOne
14 instantiations of ConstantValueOne
Microsoft.CodeAnalysis (14)
ConstantValueSpecialized.cs (14)
518
public static readonly ConstantValueOne SByte = new
ConstantValueOne
(ConstantValueTypeDiscriminator.SByte);
519
public static readonly ConstantValueOne Byte = new
ConstantValueOne
(ConstantValueTypeDiscriminator.Byte);
520
public static readonly ConstantValueOne Int16 = new
ConstantValueOne
(ConstantValueTypeDiscriminator.Int16);
521
public static readonly ConstantValueOne UInt16 = new
ConstantValueOne
(ConstantValueTypeDiscriminator.UInt16);
522
public static readonly ConstantValueOne Int32 = new
ConstantValueOne
(ConstantValueTypeDiscriminator.Int32);
523
public static readonly ConstantValueOne UInt32 = new
ConstantValueOne
(ConstantValueTypeDiscriminator.UInt32);
524
public static readonly ConstantValueOne Int64 = new
ConstantValueOne
(ConstantValueTypeDiscriminator.Int64);
525
public static readonly ConstantValueOne UInt64 = new
ConstantValueOne
(ConstantValueTypeDiscriminator.UInt64);
526
public static readonly ConstantValueOne NInt = new
ConstantValueOne
(ConstantValueTypeDiscriminator.NInt);
527
public static readonly ConstantValueOne NUInt = new
ConstantValueOne
(ConstantValueTypeDiscriminator.NUInt);
528
public static readonly ConstantValueOne Single = new
ConstantValueOne
(ConstantValueTypeDiscriminator.Single);
529
public static readonly ConstantValueOne Double = new
ConstantValueOne
(ConstantValueTypeDiscriminator.Double);
531
public static readonly ConstantValueOne Boolean = new
ConstantValueOne
(ConstantValueTypeDiscriminator.Boolean);
532
public static readonly ConstantValueOne Char = new
ConstantValueOne
(ConstantValueTypeDiscriminator.Char);
32 references to ConstantValueOne
Microsoft.CodeAnalysis (32)
ConstantValue.cs (17)
98
public static ConstantValue True { get { return
ConstantValueOne
.Boolean; } }
125
return
ConstantValueOne
.Char;
139
return
ConstantValueOne
.SByte;
153
return
ConstantValueOne
.Byte;
167
return
ConstantValueOne
.Int16;
181
return
ConstantValueOne
.UInt16;
195
return
ConstantValueOne
.Int32;
209
return
ConstantValueOne
.UInt32;
223
return
ConstantValueOne
.Int64;
237
return
ConstantValueOne
.UInt64;
251
return
ConstantValueOne
.NInt;
265
return
ConstantValueOne
.NUInt;
275
return
ConstantValueOne
.Boolean;
291
return
ConstantValueOne
.Single;
305
return
ConstantValueOne
.Single;
319
return
ConstantValueOne
.Double;
338
return
ConstantValueOne
.Decimal;
ConstantValueSpecialized.cs (15)
518
public static readonly
ConstantValueOne
SByte = new ConstantValueOne(ConstantValueTypeDiscriminator.SByte);
519
public static readonly
ConstantValueOne
Byte = new ConstantValueOne(ConstantValueTypeDiscriminator.Byte);
520
public static readonly
ConstantValueOne
Int16 = new ConstantValueOne(ConstantValueTypeDiscriminator.Int16);
521
public static readonly
ConstantValueOne
UInt16 = new ConstantValueOne(ConstantValueTypeDiscriminator.UInt16);
522
public static readonly
ConstantValueOne
Int32 = new ConstantValueOne(ConstantValueTypeDiscriminator.Int32);
523
public static readonly
ConstantValueOne
UInt32 = new ConstantValueOne(ConstantValueTypeDiscriminator.UInt32);
524
public static readonly
ConstantValueOne
Int64 = new ConstantValueOne(ConstantValueTypeDiscriminator.Int64);
525
public static readonly
ConstantValueOne
UInt64 = new ConstantValueOne(ConstantValueTypeDiscriminator.UInt64);
526
public static readonly
ConstantValueOne
NInt = new ConstantValueOne(ConstantValueTypeDiscriminator.NInt);
527
public static readonly
ConstantValueOne
NUInt = new ConstantValueOne(ConstantValueTypeDiscriminator.NUInt);
528
public static readonly
ConstantValueOne
Single = new ConstantValueOne(ConstantValueTypeDiscriminator.Single);
529
public static readonly
ConstantValueOne
Double = new ConstantValueOne(ConstantValueTypeDiscriminator.Double);
530
public static readonly
ConstantValueOne
Decimal = new ConstantValueDecimalOne();
531
public static readonly
ConstantValueOne
Boolean = new ConstantValueOne(ConstantValueTypeDiscriminator.Boolean);
532
public static readonly
ConstantValueOne
Char = new ConstantValueOne(ConstantValueTypeDiscriminator.Char);