12 references to Ldc_R4
illink (2)
Microsoft.Maui.Controls.Build.Tasks (10)
CompiledConverters\ColorTypeConverter.cs (4)
27 yield return Instruction.Create(OpCodes.Ldc_R4, color.Red); 28 yield return Instruction.Create(OpCodes.Ldc_R4, color.Green); 29 yield return Instruction.Create(OpCodes.Ldc_R4, color.Blue); 30 yield return Instruction.Create(OpCodes.Ldc_R4, color.Alpha);
CompiledConverters\FlexBasisTypeConverter.cs (2)
30 yield return Instruction.Create(OpCodes.Ldc_R4, (float)(relflex / 100)); 39 yield return Instruction.Create(OpCodes.Ldc_R4, flex);
CompiledMarkupExtensions\StaticExtension.cs (1)
51 return new[] { Instruction.Create(OpCodes.Ldc_R4, (float)fieldDef.Constant) };
CreateObjectVisitor.cs (2)
509 yield return Create(Ldc_R4, outfloat); 511 yield return Create(Ldc_R4, 0f);
NodeILExtensions.cs (1)
253 yield return Instruction.Create(OpCodes.Ldc_R4, TryFormat(s => Single.Parse(str, CultureInfo.InvariantCulture), node, str));