| /freebsd/contrib/ncurses/form/ |
| H A D | fty_int.c | 41 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro 43 #define isDigit(c) isdigit(UChar(c)) 207 else if (!isDigit(list[n])) in Check_This_Field() 263 return ((isDigit(UChar(c)) || (c == '-')) ? TRUE : FALSE); in Check_This_Character()
|
| H A D | fty_num.c | 51 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro 53 #define isDigit(c) isdigit(UChar(c)) 235 else if (!isDigit(list[n])) in Check_This_Field() 304 return ((isDigit(c) || in Check_This_Character()
|
| /freebsd/contrib/llvm-project/llvm/lib/TableGen/ |
| H A D | StringToOffsetTable.cpp | 112 if (isDigit(EscapedStr[i + 1])) { in EmitString() 113 assert(isDigit(EscapedStr[i + 2]) && isDigit(EscapedStr[i + 3]) && in EmitString()
|
| H A D | TGLexer.cpp | 47 return !First && isDigit(C); in isValidIDChar() 260 if (isDigit(CurChar)) { in LexToken() 267 } while (isDigit(NextChar)); in LexToken() 524 if (!isDigit(CurPtr[0])) { in LexNumber() 535 while (isDigit(CurPtr[0])) in LexNumber()
|
| /freebsd/contrib/llvm-project/llvm/lib/TargetParser/ |
| H A D | RISCVISAInfo.cpp | 172 while (Pos > 0 && isDigit(Ext[Pos])) in findLastNonVersionCharacter() 174 if (Pos > 0 && Ext[Pos] == 'p' && isDigit(Ext[Pos - 1])) { in findLastNonVersionCharacter() 176 while (Pos > 0 && isDigit(Ext[Pos])) in findLastNonVersionCharacter() 346 MajorStr = In.take_while(isDigit); in getExtensionVersion() 350 MinorStr = In.take_while(isDigit); in getExtensionVersion() 482 Arch, [](char C) { return isDigit(C) || isLower(C) || C == '_'; })) in parseNormalizedArchString() 523 if (!isDigit(Prefix[VersionStart - 1])) in parseNormalizedArchString() 539 (ExtName.size() == 1 || isDigit(ExtName[1]))) in parseNormalizedArchString() 559 Arch, [](char C) { return isDigit(C) || isLower(C) || C == '_'; })) in parseArchString() 632 if (!Arch.empty() && isDigit(Arch.front())) in parseArchString()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/ADT/ |
| H A D | StringExtras.h | 106 inline bool isDigit(char C) { return C >= '0' && C <= '9'; } in isDigit() function 122 inline bool isAlnum(char C) { return isAlpha(C) || isDigit(C); } in isAlnum()
|
| /freebsd/contrib/llvm-project/llvm/lib/Demangle/ |
| H A D | RustDemangle.cpp | 170 static inline bool isDigit(const char C) { return '0' <= C && C <= '9'; } in isDigit() function 182 return isDigit(C) || isLower(C) || isUpper(C) || C == '_'; in isValid() 905 } else if (isDigit(C)) { in parseBase62Number() 935 if (!isDigit(C)) { in parseDecimalNumber() 947 while (isDigit(look())) { in parseDecimalNumber() 981 if (isDigit(C)) in parseHexNumber() 1053 if (isDigit(C)) { in decodePunycodeDigit()
|
| /freebsd/contrib/llvm-project/llvm/lib/Support/ |
| H A D | StringRef.cpp | 65 if (isDigit(data()[I]) && isDigit(RHS.data()[I])) { in compare_numeric() 70 bool ld = J < size() && isDigit(data()[J]); in compare_numeric() 71 bool rd = J < RHS.size() && isDigit(RHS.data()[J]); in compare_numeric() 401 if (Str[0] == '0' && Str.size() > 1 && isDigit(Str[1])) { in GetAutoSenseRadix()
|
| H A D | TextEncoding.cpp | 39 PrevDigit = isDigit(Ch); in normalizeCharSetName()
|
| /freebsd/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | AsmLexer.cpp | 159 while (isDigit(*CurPtr)) in LexFloatLiteral() 172 while (isDigit(*CurPtr)) in LexFloatLiteral() 217 while (isDigit(*CurPtr)) in LexHexFloatLiteral() 235 if (CurPtr[-1] == '.' && isDigit(*CurPtr)) { in LexIdentifier() 237 while (isDigit(*CurPtr)) in LexIdentifier() 350 if (isDigit(*LookAhead)) { in doHexLookAhead() 573 if (!isDigit(CurPtr[0])) { in LexDigit()
|
| /freebsd/contrib/llvm-project/llvm/utils/TableGen/Basic/ |
| H A D | CodeGenIntrinsics.cpp | 148 if (Suffix.size() >= 2 && is_contained("av", Suffix[0]) && isDigit(Suffix[1])) in doesSuffixLookLikeMangledType() 152 if (Suffix.size() >= 4 && Suffix.starts_with("nxv") && isDigit(Suffix[3])) in doesSuffixLookLikeMangledType() 161 all_of(Suffix.drop_front(), isDigit)) in doesSuffixLookLikeMangledType()
|
| /freebsd/contrib/llvm-project/lld/Common/ |
| H A D | Strings.cpp | 70 return !s.empty() && !isDigit(s[0]) && in isValidCIdentifier()
|
| /freebsd/contrib/llvm-project/clang/lib/Basic/ |
| H A D | Diagnostic.cpp | 847 if (!isDigit(*I) && !isPunctuation(*I)) { in ScanFormat() 848 for (I++; I != E && !isDigit(*I) && *I != '{'; I++) in ScanFormat() 1183 if (!isDigit(DiagStr[0])) { in FormatDiagnostic() 1201 assert(isDigit(*DiagStr) && "Invalid format for argument in diagnostic"); in FormatDiagnostic() 1209 assert(*DiagStr == ',' && isDigit(*(DiagStr + 1)) && in FormatDiagnostic()
|
| H A D | TargetInfo.cpp | 680 if (isDigit(Name[0])) { in isValidGCCRegisterName() 723 if (isDigit(Name[0])) { in getNormalizedGCCRegisterName()
|
| /freebsd/contrib/llvm-project/clang/include/clang/Basic/ |
| H A D | CharInfo.h | 114 LLVM_READONLY inline bool isDigit(unsigned char c) { in isDigit() function
|
| /freebsd/contrib/llvm-project/clang/include/clang/Lex/ |
| H A D | LiteralSupport.h | 178 while (ptr != ThisTokEnd && (isDigit(*ptr) || isDigitSeparator(*ptr))) in SkipDigits()
|
| /freebsd/contrib/llvm-project/llvm/lib/WindowsDriver/ |
| H A D | MSVCPaths.cpp | 214 while (*sp && !llvm::isDigit(*sp)) in getSystemRegistryString() 219 while (*ep && (llvm::isDigit(*ep) || (*ep == '.'))) in getSystemRegistryString()
|
| /freebsd/contrib/llvm-project/clang/lib/Lex/ |
| H A D | TokenConcatenation.cpp | 276 isDigit(FirstChar) || in AvoidConcat()
|
| /freebsd/contrib/llvm-project/lldb/source/Core/ |
| H A D | Mangled.cpp | 59 if (!buf.empty() && (llvm::isDigit(buf.front()) || name == "_Dmain")) in GetManglingScheme()
|
| /freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinterInlineAsm.cpp | 237 while (isDigit(*IDEnd)) in EmitInlineAsmStr()
|
| /freebsd/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULibFunc.cpp | 491 while (!s.empty() && isDigit(s.front())) { in eatNumber() 622 if (isDigit(TC)) { in parseItaniumParam()
|
| /freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 2118 bool IsDigitPart = isDigit(Curr[0]); in RecordParts() 2120 bool IsDigit = isDigit(Curr[I]); in RecordParts() 2125 IsDigitPart = isDigit(Curr[I]); in RecordParts()
|
| /freebsd/contrib/llvm-project/clang/lib/AST/ |
| H A D | Stmt.cpp | 744 if (isDigit(EscapedChar)) { in AnalyzeAsmString() 749 while (CurPtr != StrEnd && isDigit(*CurPtr)) in AnalyzeAsmString()
|
| H A D | CommentLexer.cpp | 32 return isDigit(C); in isHTMLDecimalCharacterReferenceCharacter()
|
| /freebsd/contrib/llvm-project/clang/utils/TableGen/ |
| H A D | ClangDiagnosticsEmitter.cpp | 1348 return isUpper(C) || isDigit(C) || C == '+' || C == '_'; in isExemptAtStart() 1477 if (isDigit(FullDiagText.back()) && *(FullDiagText.end() - 2) == '}') { in verifyDiagnosticWording()
|