37 references to Divide
System (2)
compmod\microsoft\csharp\csharpcodeprovider.cs (1)
2124
case CodeBinaryOperatorType.
Divide
:
compmod\system\codedom\compiler\CodeGenerator.cs (1)
1248
case CodeBinaryOperatorType.
Divide
:
System.Management (7)
WmiGenerator.cs (7)
6577
cboe.Operator = CodeBinaryOperatorType.
Divide
;
6757
cboe.Operator = CodeBinaryOperatorType.
Divide
;
7081
cboe2.Operator = CodeBinaryOperatorType.
Divide
;
7193
cboe.Operator = CodeBinaryOperatorType.
Divide
;
7247
cboe2.Operator = CodeBinaryOperatorType.
Divide
;
7375
cboe2.Operator = CodeBinaryOperatorType.
Divide
;
7638
CodeBinaryOperatorType.
Divide
,
System.Workflow.Activities (28)
Rules\ArithmeticLiteral.cs (22)
349
goto case CodeBinaryOperatorType.
Divide
;
351
case CodeBinaryOperatorType.
Divide
:
600
string message = string.Format(CultureInfo.CurrentCulture, Messages.IncompatibleArithmeticTypes, v.TypeName, CodeBinaryOperatorType.
Divide
, this.TypeName);
601
throw new RuleEvaluationIncompatibleTypesException(message, v.m_type, CodeBinaryOperatorType.
Divide
, this.m_type);
605
string message = string.Format(CultureInfo.CurrentCulture, Messages.IncompatibleArithmeticTypes, Messages.NullValue, CodeBinaryOperatorType.
Divide
, this.TypeName);
606
throw new RuleEvaluationIncompatibleTypesException(message, typeof(void), CodeBinaryOperatorType.
Divide
, this.m_type);
610
string message = string.Format(CultureInfo.CurrentCulture, Messages.IncompatibleArithmeticTypes, v.GetType(), CodeBinaryOperatorType.
Divide
, this.TypeName);
611
throw new RuleEvaluationIncompatibleTypesException(message, v.GetType(), CodeBinaryOperatorType.
Divide
, this.m_type);
615
string message = string.Format(CultureInfo.CurrentCulture, Messages.IncompatibleArithmeticTypes, v.GetType(), CodeBinaryOperatorType.
Divide
, this.TypeName);
616
throw new RuleEvaluationIncompatibleTypesException(message, v.GetType(), CodeBinaryOperatorType.
Divide
, this.m_type);
620
string message = string.Format(CultureInfo.CurrentCulture, Messages.IncompatibleArithmeticTypes, v.GetType(), CodeBinaryOperatorType.
Divide
, this.TypeName);
621
throw new RuleEvaluationIncompatibleTypesException(message, v.GetType(), CodeBinaryOperatorType.
Divide
, this.m_type);
625
string message = string.Format(CultureInfo.CurrentCulture, Messages.IncompatibleArithmeticTypes, v.GetType(), CodeBinaryOperatorType.
Divide
, this.TypeName);
626
throw new RuleEvaluationIncompatibleTypesException(message, v.GetType(), CodeBinaryOperatorType.
Divide
, this.m_type);
630
string message = string.Format(CultureInfo.CurrentCulture, Messages.IncompatibleArithmeticTypes, v.GetType(), CodeBinaryOperatorType.
Divide
, this.TypeName);
631
throw new RuleEvaluationIncompatibleTypesException(message, v.GetType(), CodeBinaryOperatorType.
Divide
, this.m_type);
635
string message = string.Format(CultureInfo.CurrentCulture, Messages.IncompatibleArithmeticTypes, v.GetType(), CodeBinaryOperatorType.
Divide
, this.TypeName);
636
throw new RuleEvaluationIncompatibleTypesException(message, v.GetType(), CodeBinaryOperatorType.
Divide
, this.m_type);
640
string message = string.Format(CultureInfo.CurrentCulture, Messages.IncompatibleArithmeticTypes, v.GetType(), CodeBinaryOperatorType.
Divide
, this.TypeName);
641
throw new RuleEvaluationIncompatibleTypesException(message, v.GetType(), CodeBinaryOperatorType.
Divide
, this.m_type);
645
string message = string.Format(CultureInfo.CurrentCulture, Messages.IncompatibleArithmeticTypes, v.GetType(), CodeBinaryOperatorType.
Divide
, this.TypeName);
646
throw new RuleEvaluationIncompatibleTypesException(message, v.GetType(), CodeBinaryOperatorType.
Divide
, this.m_type);
Rules\CodeDomDecompiler.cs (1)
441
case CodeBinaryOperatorType.
Divide
:
Rules\Expressions.cs (3)
257
case CodeBinaryOperatorType.
Divide
:
548
case CodeBinaryOperatorType.
Divide
:
681
case CodeBinaryOperatorType.
Divide
:
Rules\Literal.cs (1)
535
case CodeBinaryOperatorType.
Divide
:
Rules\Parser\Parser.cs (1)
605
new BinaryOperationDescriptor(TokenID.Divide, CodeBinaryOperatorType.
Divide
),