33 references to Double
Microsoft.CodeAnalysis.CSharp (33)
Binder\Binder_Patterns.cs (2)
1646case BinaryOperatorKind.Double: 1698SpecialType.System_Double => BinaryOperatorKind.Double,
Binder\Semantics\Operators\BinaryOperatorEasyOut.cs (2)
26private const BinaryOperatorKind DBL = BinaryOperatorKind.Double; 36private const BinaryOperatorKind LDB = BinaryOperatorKind.Lifted | BinaryOperatorKind.Double;
Binder\Semantics\Operators\OperatorKind.cs (22)
362DoubleMultiplication = Double | Multiplication, 372LiftedDoubleMultiplication = Lifted | Double | Multiplication, 384DoubleDivision = Double | Division, 394LiftedDoubleDivision = Lifted | Double | Division, 406DoubleRemainder = Double | Remainder, 416LiftedDoubleRemainder = Lifted | Double | Remainder, 428DoubleAddition = Double | Addition, 440LiftedDoubleAddition = Lifted | Double | Addition, 467DoubleSubtraction = Double | Subtraction, 480LiftedDoubleSubtraction = Lifted | Double | Subtraction, 548DoubleEqual = Double | Equal, 561LiftedDoubleEqual = Lifted | Double | Equal, 579DoubleNotEqual = Double | NotEqual, 592LiftedDoubleNotEqual = Lifted | Double | NotEqual, 610DoubleLessThan = Double | LessThan, 621LiftedDoubleLessThan = Lifted | Double | LessThan, 635DoubleGreaterThan = Double | GreaterThan, 646LiftedDoubleGreaterThan = Lifted | Double | GreaterThan, 660DoubleLessThanOrEqual = Double | LessThanOrEqual, 671LiftedDoubleLessThanOrEqual = Lifted | Double | LessThanOrEqual, 685DoubleGreaterThanOrEqual = Double | GreaterThanOrEqual, 696LiftedDoubleGreaterThanOrEqual = Lifted | Double | GreaterThanOrEqual,
CodeGen\EmitOperators.cs (1)
841case BinaryOperatorKind.Double:
Compilation\BuiltInOperators.cs (4)
755case BinaryOperatorKind.Double: return _compilation.GetSpecialType(SpecialType.System_Double); 787case BinaryOperatorKind.Double: return _compilation.GetSpecialType(SpecialType.System_Double); 819case BinaryOperatorKind.Double: return _compilation.GetSpecialType(SpecialType.System_Double); 846BinaryOperatorKind.Double => _compilation.GetSpecialType(SpecialType.System_Double),
Lowering\LocalRewriter\LocalRewriter_UnaryOperator.cs (2)
1011result = BinaryOperatorKind.Double; 1113case BinaryOperatorKind.Double: