8 references to HexValue
Microsoft.CodeAnalysis.CSharp (8)
Compilation\CSharpCompilation.cs (4)
3988
var b = SyntaxFacts.
HexValue
(bytesText[i * 2]) * 16 +
3989
SyntaxFacts.
HexValue
(bytesText[i * 2 + 1]);
4008
var b = SyntaxFacts.
HexValue
(bytesText[i * 2]) * 16 +
4009
SyntaxFacts.
HexValue
(bytesText[i * 2 + 1]);
Parser\Lexer.cs (4)
3011
charValue = (charValue << 4) + (uint)SyntaxFacts.
HexValue
(ch);
4668
uintChar = (uint)((uintChar << 4) + SyntaxFacts.
HexValue
(character));
4716
intChar = (intChar << 4) + SyntaxFacts.
HexValue
(ch2);
4799
uintChar = (uintChar << 4) + (uint)SyntaxFacts.
HexValue
(digit);