8 references to HexValue
Microsoft.CodeAnalysis.CSharp (8)
Compilation\CSharpCompilation.cs (4)
3919
var b = SyntaxFacts.
HexValue
(bytesText[i * 2]) * 16 +
3920
SyntaxFacts.
HexValue
(bytesText[i * 2 + 1]);
3939
var b = SyntaxFacts.
HexValue
(bytesText[i * 2]) * 16 +
3940
SyntaxFacts.
HexValue
(bytesText[i * 2 + 1]);
Parser\Lexer.cs (4)
3034
charValue = (charValue << 4) + (uint)SyntaxFacts.
HexValue
(ch);
4691
uintChar = (uint)((uintChar << 4) + SyntaxFacts.
HexValue
(character));
4739
intChar = (intChar << 4) + SyntaxFacts.
HexValue
(ch2);
4822
uintChar = (uintChar << 4) + (uint)SyntaxFacts.
HexValue
(digit);