Home
last modified time | relevance | path

Searched refs:DecimalDigitValue (Results 1 – 3 of 3) sorted by relevance

/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dcharacters.h96 inline constexpr char DecimalDigitValue(char ch) { return ch - '0'; } in DecimalDigitValue() function
101 : DecimalDigitValue(ch); in HexadecimalDigitValue()
/llvm-project-15.0.7/flang/lib/Parser/
H A Dcharacters.cpp190 char32_t code{static_cast<char32_t>(DecimalDigitValue(cp[1]))}; in DecodeEscapedCharacter()
193 code = 8 * code + DecimalDigitValue(cp[len]); in DecodeEscapedCharacter()
H A Dprescan.cpp543 n = 10 * n + DecimalDigitValue(*at_); in NextToken()