8 references to HexValue
Microsoft.CodeAnalysis.CSharp (8)
Compilation\CSharpCompilation.cs (4)
3871var b = SyntaxFacts.HexValue(bytesText[i * 2]) * 16 + 3872SyntaxFacts.HexValue(bytesText[i * 2 + 1]); 3891var b = SyntaxFacts.HexValue(bytesText[i * 2]) * 16 + 3892SyntaxFacts.HexValue(bytesText[i * 2 + 1]);
Parser\Lexer.cs (4)
3012charValue = (charValue << 4) + (uint)SyntaxFacts.HexValue(ch); 4669uintChar = (uint)((uintChar << 4) + SyntaxFacts.HexValue(character)); 4717intChar = (intChar << 4) + SyntaxFacts.HexValue(ch2); 4800uintChar = (uintChar << 4) + (uint)SyntaxFacts.HexValue(digit);