Home
last modified time | relevance | path

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

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