Home
last modified time | relevance | path

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

/external/llvm-project/flang/lib/Parser/
Dprescan.cpp265 if (!bad && !IsDecimalDigit(*at_)) { in LabelField()
285 if (IsDecimalDigit(*at_)) { in LabelField()
461 } else if (IsDecimalDigit(*at_)) { in NextToken()
473 } while (IsDecimalDigit(*at_)); in NextToken()
478 while (IsDecimalDigit(EmitCharAndAdvance(tokens, *at_))) { in NextToken()
498 if (!inPreprocessorDirective_ && IsDecimalDigit(nch)) { in NextToken()
499 while (IsDecimalDigit(EmitCharAndAdvance(tokens, *at_))) { in NextToken()
557 while (IsDecimalDigit(*at_)) { in ExponentAndKind()
1025 if (sp == sentinel + 1 && sentinel[0] == '$' && IsDecimalDigit(*p)) { in IsFixedFormCompilerDirectiveLine()
Dtoken-sequence.cpp166 if (IsDecimalDigit(*p)) { in ToLowerCase()
167 while (p < limit && IsDecimalDigit(*p)) { in ToLowerCase()
Dtoken-parsers.h355 if (IsDecimalDigit(**ch1)) { in Parse()
358 if (!IsDecimalDigit(**p)) { in Parse()
Dpreprocessor.cpp413 if (IsDecimalDigit(dir.TokenAt(j)[0]) || dir.TokenAt(j)[0] == '"') { in Directive()
805 } else if (IsDecimalDigit(t[0])) { in ExpressionValue()
/external/llvm-project/flang/include/flang/Parser/
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()
/external/llvm-project/flang/lib/Semantics/
Dresolve-labels.cpp880 if (maxPosition && parser::IsDecimalDigit(position[0])) { in SkipLabel()
882 for (; (i < maxPosition) && parser::IsDecimalDigit(position[i]); ++i) { in SkipLabel()