Home
last modified time | relevance | path

Searched refs:getDigit (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/flang/lib/Parser/
H A Dtoken-parsers.h395 static constexpr auto getDigit{attempt(digit)}; in Parse()
396 while (auto nextDigit{getDigit.Parse(state)}) { in Parse()
466 static constexpr auto getDigit{space >> attempt(digit)}; in Parse()
467 while (auto nextDigit{getDigit.Parse(state)}) { in Parse()
/llvm-project-15.0.7/llvm/lib/Support/
H A DAPInt.cpp48 inline static unsigned getDigit(char cdigit, uint8_t radix) { in getDigit() function
2120 unsigned digit = getDigit(*p, radix); in fromString()