21 references to ParseHexChar
PresentationCore (21)
Core\CSharp\System\Windows\Media\Parsers.cs (21)
63
a =
ParseHexChar
(trimmedColor[1]) * 16 +
ParseHexChar
(trimmedColor[2]);
64
r =
ParseHexChar
(trimmedColor[3]) * 16 +
ParseHexChar
(trimmedColor[4]);
65
g =
ParseHexChar
(trimmedColor[5]) * 16 +
ParseHexChar
(trimmedColor[6]);
66
b =
ParseHexChar
(trimmedColor[7]) * 16 +
ParseHexChar
(trimmedColor[8]);
70
r =
ParseHexChar
(trimmedColor[1]) * 16 +
ParseHexChar
(trimmedColor[2]);
71
g =
ParseHexChar
(trimmedColor[3]) * 16 +
ParseHexChar
(trimmedColor[4]);
72
b =
ParseHexChar
(trimmedColor[5]) * 16 +
ParseHexChar
(trimmedColor[6]);
76
a =
ParseHexChar
(trimmedColor[1]);
78
r =
ParseHexChar
(trimmedColor[2]);
80
g =
ParseHexChar
(trimmedColor[3]);
82
b =
ParseHexChar
(trimmedColor[4]);
87
r =
ParseHexChar
(trimmedColor[1]);
89
g =
ParseHexChar
(trimmedColor[2]);
91
b =
ParseHexChar
(trimmedColor[3]);