| /freebsd-12.1/contrib/ncurses/form/ |
| H A D | fty_int.c | 40 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro 42 #define isDigit(c) isdigit(UChar(c)) 206 else if (!isDigit(list[n])) in Check_This_Field() 259 return ((isDigit(UChar(c)) || (c == '-')) ? TRUE : FALSE); in Check_This_Character()
|
| H A D | fty_num.c | 50 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro 52 #define isDigit(c) isdigit(UChar(c)) 234 else if (!isDigit(list[n])) in Check_This_Field() 300 return ((isDigit(c) || in Check_This_Character()
|
| /freebsd-12.1/contrib/llvm/lib/MC/MCParser/ |
| H A D | AsmLexer.cpp | 72 while (isDigit(*CurPtr)) in LexFloatLiteral() 82 while (isDigit(*CurPtr)) in LexFloatLiteral() 127 while (isDigit(*CurPtr)) in LexHexFloatLiteral() 145 if (CurPtr[-1] == '.' && isDigit(*CurPtr)) { in LexIdentifier() 147 while (isDigit(*CurPtr)) in LexIdentifier() 251 if (isDigit(*LookAhead)) { in doHexLookAhead() 356 if (!isDigit(CurPtr[0])) { in LexDigit()
|
| /freebsd-12.1/contrib/llvm/lib/Support/ |
| H A D | StringRef.cpp | 67 if (isDigit(Data[I]) && isDigit(RHS.Data[I])) { in compare_numeric() 72 bool ld = J < Length && isDigit(Data[J]); in compare_numeric() 73 bool rd = J < RHS.Length && isDigit(RHS.Data[J]); in compare_numeric() 403 if (Str[0] == '0' && Str.size() > 1 && isDigit(Str[1])) { in GetAutoSenseRadix()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ToolChains/Arch/ |
| H A D | RISCV.cpp | 61 while (I != E && isDigit(*I)) in getExtensionVersion() 70 while (I != E && isDigit(*I)) in getExtensionVersion() 165 auto Pos = Name.find_if(isDigit); in getExtensionFeatures()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Frontend/ |
| H A D | LayoutOverrideSource.cpp | 132 while (!LineStr.empty() && isDigit(LineStr[0])) { in LayoutOverrideSource() 135 while (Idx < LineStr.size() && isDigit(LineStr[Idx])) in LayoutOverrideSource()
|
| H A D | VerifyDiagnosticConsumer.cpp | 298 while (isDigit(PEnd[-1]) || PEnd[-1] == '-') in Search()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/ |
| H A D | Diagnostic.cpp | 567 if (!isDigit(*I) && !isPunctuation(*I)) { in ScanFormat() 568 for (I++; I != E && !isDigit(*I) && *I != '{'; I++) ; in ScanFormat() 834 if (!isDigit(DiagStr[0])) { in FormatDiagnostic() 853 assert(isDigit(*DiagStr) && "Invalid format for argument in diagnostic"); in FormatDiagnostic() 861 assert(*DiagStr == ',' && isDigit(*(DiagStr + 1)) && in FormatDiagnostic()
|
| H A D | TargetInfo.cpp | 453 if (isDigit(Name[0])) { in isValidGCCRegisterName() 496 if (isDigit(Name[0])) { in getNormalizedGCCRegisterName()
|
| /freebsd-12.1/contrib/llvm/include/llvm/ADT/ |
| H A D | StringExtras.h | 77 inline bool isDigit(char C) { return C >= '0' && C <= '9'; } in isDigit() function 89 inline bool isAlnum(char C) { return isAlpha(C) || isDigit(C); } in isAlnum()
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Basic/ |
| H A D | CharInfo.h | 94 LLVM_READONLY inline bool isDigit(unsigned char c) { in isDigit() function
|
| /freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/ |
| H A D | LiteralSupport.h | 158 while (ptr != ThisTokEnd && (isDigit(*ptr) || isDigitSeparator(*ptr))) in SkipDigits()
|
| /freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULibFunc.cpp | 500 static inline bool isDigit(char c) { return c >= '0' && c <= '9'; } in isDigit() function 505 while (!s.empty() && isDigit(s.front())) { in eatNumber() 616 if (::isDigit(TC)) { in parseItaniumParam()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Lex/ |
| H A D | TokenConcatenation.cpp | 265 isDigit(FirstChar) || in AvoidConcat()
|
| H A D | LiteralSupport.cpp | 951 if (isDigit(*s)) { in ParseNumberStartingWithZero()
|
| H A D | PPDirectives.cpp | 1055 if (!isDigit(DigitTokBegin[i])) { in GetLineValue()
|
| H A D | ModuleMap.cpp | 345 if (isDigit(Name[0])) in sanitizeFilenameAsIdentifier()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/AST/ |
| H A D | Stmt.cpp | 617 if (isDigit(EscapedChar)) { in AnalyzeAsmString() 622 while (CurPtr != StrEnd && isDigit(*CurPtr)) in AnalyzeAsmString()
|
| H A D | CommentLexer.cpp | 33 return isDigit(C); in isHTMLDecimalCharacterReferenceCharacter()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ToolChains/ |
| H A D | MSVC.cpp | 939 while (*sp && !isDigit(*sp)) in getSystemRegistryString() 944 while (*ep && (isDigit(*ep) || (*ep == '.'))) in getSystemRegistryString()
|
| /freebsd-12.1/contrib/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 1702 bool isDigit = ascii_isdigit(Curr[I]); in RecordParts() local 1703 if (isDigit != isDigitPart) { in RecordParts()
|
| /freebsd-12.1/contrib/llvm/tools/clang/lib/Parse/ |
| H A D | ParseDecl.cpp | 808 while (AfterMajor < ActualLength && isDigit(ThisTokBegin[AfterMajor])) { in ParseVersionTuple() 844 while (AfterMinor < ActualLength && isDigit(ThisTokBegin[AfterMinor])) { in ParseVersionTuple() 877 while (AfterSubminor < ActualLength && isDigit(ThisTokBegin[AfterSubminor])) { in ParseVersionTuple()
|