8 references to BoxedTrue
System.Linq.Expressions (8)
System\Linq\Expressions\Interpreter\InstructionList.cs (1)
336Emit(s_true ??= new LoadObjectInstruction(Utils.BoxedTrue));
System\Linq\Expressions\Interpreter\InterpretedFrame.cs (1)
71Data[StackIndex++] = value ? Utils.BoxedTrue : Utils.BoxedFalse;
System\Linq\Expressions\Interpreter\LightCompiler.cs (3)
827node.NodeType == ExpressionType.Equal ? AstUtils.BoxedFalse : AstUtils.BoxedTrue, 1429_instructions.EmitLoad(andAlso ? AstUtils.BoxedTrue : AstUtils.BoxedFalse, typeof(object)); 1435_instructions.EmitLoad(andAlso ? AstUtils.BoxedFalse : AstUtils.BoxedTrue, typeof(object));
System\Linq\Expressions\Interpreter\OrInstruction.cs (2)
160frame.Push((bool)right ? Utils.BoxedTrue : null); 167frame.Push((bool)left ? Utils.BoxedTrue : null);
System\Linq\Expressions\Utils.cs (1)
33private static readonly ConstantExpression s_true = Expression.Constant(BoxedTrue);