8 references to HexValue
Microsoft.CodeAnalysis.CSharp (8)
Compilation\CSharpCompilation.cs (4)
3558
var b = SyntaxFacts.
HexValue
(bytesText[i * 2]) * 16 +
3559
SyntaxFacts.
HexValue
(bytesText[i * 2 + 1]);
3578
var b = SyntaxFacts.
HexValue
(bytesText[i * 2]) * 16 +
3579
SyntaxFacts.
HexValue
(bytesText[i * 2 + 1]);
Parser\Lexer.cs (1)
3354
charValue = (charValue << 4) + (uint)SyntaxFacts.
HexValue
(ch);
Parser\SlidingTextWindow.cs (3)
465
uintChar = (uint)((uintChar << 4) + SyntaxFacts.
HexValue
(character));
513
intChar = (intChar << 4) + SyntaxFacts.
HexValue
(ch2);
596
uintChar = (uintChar << 4) + (uint)SyntaxFacts.
HexValue
(digit);