8 references to LiteralDecimal
System.Data.SqlXml (8)
System\Xml\Xsl\IlGen\XmlILOptimizerVisitor.cs (7)
991return Replace(XmlILOptimization.EliminateNegate, local0, VisitLiteralDecimal(f.LiteralDecimal( -local2 ))); 4133return this.f.LiteralDecimal((decimal) value.ValueAs(XsltConvert.DecimalType)); 4244case QilNodeType.Add: return f.LiteralDecimal(lngLeft + lngRight); 4245case QilNodeType.Subtract: return f.LiteralDecimal(lngLeft - lngRight); 4246case QilNodeType.Multiply: return f.LiteralDecimal(lngLeft * lngRight); 4247case QilNodeType.Divide: return f.LiteralDecimal(lngLeft / lngRight); 4248case QilNodeType.Modulo: return f.LiteralDecimal(lngLeft % lngRight);
System\Xml\Xsl\QIL\QilXmlReader.cs (1)
130nd = f.LiteralDecimal(Decimal.Parse(ReadText(), CultureInfo.InvariantCulture));