Home
last modified time | relevance | path

Searched refs:IsDecimalDigit (Results 1 – 6 of 6) sorted by relevance

/llvm-project-15.0.7/flang/lib/Parser/
H A Dprescan.cpp279 if (!bad && !IsDecimalDigit(*at_)) { in LabelField()
301 if (IsDecimalDigit(*at_)) { in LabelField()
538 } else if (IsDecimalDigit(*at_)) { in NextToken()
550 } while (IsDecimalDigit(*at_)); in NextToken()
555 while (IsDecimalDigit(EmitCharAndAdvance(tokens, *at_))) { in NextToken()
575 if (!inPreprocessorDirective_ && IsDecimalDigit(nch)) { in NextToken()
576 while (IsDecimalDigit(EmitCharAndAdvance(tokens, *at_))) { in NextToken()
634 while (IsDecimalDigit(*at_)) { in ExponentAndKind()
1100 if (sp == sentinel + 1 && sentinel[0] == '$' && IsDecimalDigit(*p)) { in IsFixedFormCompilerDirectiveLine()
H A Dtoken-sequence.cpp158 if (IsDecimalDigit(*p)) { in ToLowerCase()
159 while (p < limit && IsDecimalDigit(*p)) { in ToLowerCase()
H A Dtoken-parsers.h355 if (IsDecimalDigit(**ch1)) { in Parse()
358 if (!IsDecimalDigit(**p)) { in Parse()
H A Dpreprocessor.cpp415 if (IsDecimalDigit(dir.TokenAt(j)[0]) || dir.TokenAt(j)[0] == '"') { in Directive()
818 } else if (IsDecimalDigit(t[0])) { in ExpressionValue()
/llvm-project-15.0.7/flang/include/flang/Parser/
H A Dcharacters.h43 inline constexpr bool IsDecimalDigit(char ch) { return ch >= '0' && ch <= '9'; } in IsDecimalDigit() function
57 return IsLegalIdentifierStart(ch) || IsDecimalDigit(ch); in IsLegalInIdentifier()
177 return IsLegalIdentifierStart(ch) || IsDecimalDigit(ch); in IsValidFortranTokenCharacter()
/llvm-project-15.0.7/flang/lib/Semantics/
H A Dresolve-labels.cpp903 if (maxPosition && parser::IsDecimalDigit(position[0])) { in SkipLabel()
905 for (; (i < maxPosition) && parser::IsDecimalDigit(position[i]); ++i) { in SkipLabel()