8 references to HexValue
Microsoft.CodeAnalysis.CSharp (8)
Compilation\CSharpCompilation.cs (4)
3846var b = SyntaxFacts.HexValue(bytesText[i * 2]) * 16 + 3847SyntaxFacts.HexValue(bytesText[i * 2 + 1]); 3866var b = SyntaxFacts.HexValue(bytesText[i * 2]) * 16 + 3867SyntaxFacts.HexValue(bytesText[i * 2 + 1]);
Parser\Lexer.cs (4)
2979charValue = (charValue << 4) + (uint)SyntaxFacts.HexValue(ch); 4636uintChar = (uint)((uintChar << 4) + SyntaxFacts.HexValue(character)); 4684intChar = (intChar << 4) + SyntaxFacts.HexValue(ch2); 4767uintChar = (uintChar << 4) + (uint)SyntaxFacts.HexValue(digit);