10 writes to r
PresentationCore (10)
System\Windows\Media\Color.cs (10)
41c1.scRgbColor.r = 0.0f; 124c1.scRgbColor.r = sRgbToScRgb(c1.sRgbColor.r); // note that context is undefined and thus unloaded 141c1.scRgbColor.r = r; 173c1.scRgbColor.r = sRgbToScRgb(r); // note that context is undefined and thus unloaded 358scRgbColor.r = (scRgbColor.r < 0) ? 0 : (scRgbColor.r > 1.0f) ? 1.0f : scRgbColor.r; 466c1.scRgbColor.r = sRgbToScRgb(c1.sRgbColor.r); 583c1.scRgbColor.r = sRgbToScRgb(c1.sRgbColor.r); 820scRgbColor.r = sRgbToScRgb(value); 922scRgbColor.r = value; 1088this.scRgbColor.r = sRgbToScRgb((byte)((255.0f * scRGBValue[0]) + 0.5f));
19 references to r
PresentationCore (19)
System\Windows\Media\Color.cs (19)
95c1.sRgbColor.r = ScRgbTosRgb(c1.scRgbColor.r); 155c1.sRgbColor.r = ScRgbTosRgb(c1.scRgbColor.r); 178c1.sRgbColor.r = ScRgbTosRgb(c1.scRgbColor.r); 281separator, scRgbColor.a, scRgbColor.r, scRgbColor.g, scRgbColor.b); 338result = result && FloatUtil.AreClose(scRgbColor.r, color.scRgbColor.r); 358scRgbColor.r = (scRgbColor.r < 0) ? 0 : (scRgbColor.r > 1.0f) ? 1.0f : scRgbColor.r; 363sRgbColor.r = ScRgbTosRgb(scRgbColor.r); 403color1.scRgbColor.r + color2.scRgbColor.r, 515color1.scRgbColor.r - color2.scRgbColor.r, 627Color c1 = FromScRgb(color.scRgbColor.a * coefficient, color.scRgbColor.r * coefficient, color.scRgbColor.g * coefficient, color.scRgbColor.b * coefficient); 699if (color1.scRgbColor.r != color2.scRgbColor.r) 915return scRgbColor.r; 1135return a.GetHashCode() ^ r.GetHashCode() ^ g.GetHashCode() ^ b.GetHashCode();