15 references to LiteralInt32
System.Data.SqlXml (15)
System\Xml\Xsl\IlGen\XmlILOptimizerVisitor.cs (12)
340return Replace(XmlILOptimization.EliminatePositionOf, local0, VisitLiteralInt32(f.LiteralInt32(1))); 350return Replace(XmlILOptimization.EliminatePositionOf, local0, VisitLiteralInt32(f.LiteralInt32(1))); 611return Replace(XmlILOptimization.EliminateLength, local0, VisitLiteralInt32(f.LiteralInt32(0))); 620return Replace(XmlILOptimization.EliminateLength, local0, VisitLiteralInt32(f.LiteralInt32(1))); 1009return Replace(XmlILOptimization.EliminateNegate, local0, VisitLiteralInt32(f.LiteralInt32( -local2 ))); 1223return Replace(XmlILOptimization.EliminateStrLength, local0, VisitLiteralInt32(f.LiteralInt32( local2.Length ))); 4129return this.f.LiteralInt32(value.ValueAsInt); 4216case QilNodeType.Add: return f.LiteralInt32(intLeft + intRight); 4217case QilNodeType.Subtract: return f.LiteralInt32(intLeft - intRight); 4218case QilNodeType.Multiply: return f.LiteralInt32(intLeft * intRight); 4219case QilNodeType.Divide: return f.LiteralInt32(intLeft / intRight); 4220case QilNodeType.Modulo: return f.LiteralInt32(intLeft % intRight);
System\Xml\Xsl\QIL\QilPatternFactory.cs (2)
43return f.LiteralInt32(val); 306return f.Conditional(f.Eq(expr, f.LiteralInt32(0)), branches[0], branches[1]);
System\Xml\Xsl\QIL\QilXmlReader.cs (1)
118nd = f.LiteralInt32(Int32.Parse(ReadText(), CultureInfo.InvariantCulture));