8 references to HexValue
Microsoft.CodeAnalysis.CSharp (8)
Compilation\CSharpCompilation.cs (4)
3894var b = SyntaxFacts.HexValue(bytesText[i * 2]) * 16 + 3895SyntaxFacts.HexValue(bytesText[i * 2 + 1]); 3914var b = SyntaxFacts.HexValue(bytesText[i * 2]) * 16 + 3915SyntaxFacts.HexValue(bytesText[i * 2 + 1]);
Parser\Lexer.cs (4)
3039charValue = (charValue << 4) + (uint)SyntaxFacts.HexValue(ch); 4696uintChar = (uint)((uintChar << 4) + SyntaxFacts.HexValue(character)); 4744intChar = (intChar << 4) + SyntaxFacts.HexValue(ch2); 4827uintChar = (uintChar << 4) + (uint)SyntaxFacts.HexValue(digit);