8 references to LiteralInt64
System.Data.SqlXml (8)
System\Xml\Xsl\IlGen\XmlILOptimizerVisitor.cs (7)
1018return Replace(XmlILOptimization.EliminateNegate, local0, VisitLiteralInt64(f.LiteralInt64( -local2 ))); 4131return this.f.LiteralInt64(value.ValueAsLong); 4230case QilNodeType.Add: return f.LiteralInt64(lngLeft + lngRight); 4231case QilNodeType.Subtract: return f.LiteralInt64(lngLeft - lngRight); 4232case QilNodeType.Multiply: return f.LiteralInt64(lngLeft * lngRight); 4233case QilNodeType.Divide: return f.LiteralInt64(lngLeft / lngRight); 4234case QilNodeType.Modulo: return f.LiteralInt64(lngLeft % lngRight);
System\Xml\Xsl\QIL\QilXmlReader.cs (1)
122nd = f.LiteralInt64(Int64.Parse(ReadText(), CultureInfo.InvariantCulture));