/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/TargetParser/ |
H A D | RISCVISAInfo.cpp | 173 while (Pos > 0 && isDigit(Ext[Pos])) in findLastNonVersionCharacter() 175 if (Pos > 0 && Ext[Pos] == 'p' && isDigit(Ext[Pos - 1])) { in findLastNonVersionCharacter() 177 while (Pos > 0 && isDigit(Ext[Pos])) in findLastNonVersionCharacter() 347 MajorStr = In.take_while(isDigit); in getExtensionVersion() 351 MinorStr = In.take_while(isDigit); in getExtensionVersion() 484 Arch, [](char C) { return isDigit(C) || isLower(C) || C == '_'; })) in parseNormalizedArchString() 525 if (!isDigit(Prefix[VersionStart - 1])) in parseNormalizedArchString() 541 (ExtName.size() == 1 || isDigit(ExtName[1]))) in parseNormalizedArchString() 561 Arch, [](char C) { return isDigit(C) || isLower(C) || C == '_'; })) in parseArchString() 634 if (!Arch.empty() && isDigit(Arch.front())) in parseArchString()
|
/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/MC/MCParser/ |
H A D | AsmLexer.cpp | 79 while (isDigit(*CurPtr)) in LexFloatLiteral() 92 while (isDigit(*CurPtr)) in LexFloatLiteral() 137 while (isDigit(*CurPtr)) in LexHexFloatLiteral() 155 if (CurPtr[-1] == '.' && isDigit(*CurPtr)) { in LexIdentifier() 157 while (isDigit(*CurPtr)) in LexIdentifier() 270 if (isDigit(*LookAhead)) { in doHexLookAhead() 493 if (!isDigit(CurPtr[0])) { in LexDigit()
|
/freebsd/contrib/llvm-project/llvm/lib/Support/ |
H A D | StringRef.cpp | 64 if (isDigit(Data[I]) && isDigit(RHS.Data[I])) { in compare_numeric() 69 bool ld = J < Length && isDigit(Data[J]); in compare_numeric() 70 bool rd = J < RHS.Length && isDigit(RHS.Data[J]); in compare_numeric() 400 if (Str[0] == '0' && Str.size() > 1 && isDigit(Str[1])) { in GetAutoSenseRadix()
|
/freebsd/contrib/llvm-project/lld/Common/ |
H A D | Strings.cpp | 67 return !s.empty() && !isDigit(s[0]) && in isValidCIdentifier()
|
/freebsd/contrib/llvm-project/clang/lib/Basic/ |
H A D | Diagnostic.cpp | 595 if (!isDigit(*I) && !isPunctuation(*I)) { in ScanFormat() 596 for (I++; I != E && !isDigit(*I) && *I != '{'; I++) ; in ScanFormat() 902 if (!isDigit(DiagStr[0])) { in FormatDiagnostic() 921 assert(isDigit(*DiagStr) && "Invalid format for argument in diagnostic"); in FormatDiagnostic() 929 assert(*DiagStr == ',' && isDigit(*(DiagStr + 1)) && in FormatDiagnostic()
|
H A D | TargetInfo.cpp | 651 if (isDigit(Name[0])) { in isValidGCCRegisterName() 694 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/llvm/include/llvm/ADT/ |
H A D | StringExtras.h | 105 inline bool isDigit(char C) { return C >= '0' && C <= '9'; } in isDigit() function 121 inline bool isAlnum(char C) { return isAlpha(C) || isDigit(C); } in isAlnum()
|
/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 | 272 isDigit(FirstChar) || in AvoidConcat()
|
H A D | LiteralSupport.cpp | 1437 if (isDigit(*s)) { in ParseNumberStartingWithZero()
|
/freebsd/contrib/llvm-project/lldb/source/Core/ |
H A D | Mangled.cpp | 58 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 | 2134 bool IsDigitPart = isDigit(Curr[0]); in RecordParts() 2136 bool IsDigit = isDigit(Curr[I]); in RecordParts() 2141 IsDigitPart = isDigit(Curr[I]); in RecordParts()
|
/freebsd/contrib/llvm-project/clang/lib/AST/ |
H A D | CommentLexer.cpp | 32 return isDigit(C); in isHTMLDecimalCharacterReferenceCharacter()
|
H A D | Stmt.cpp | 710 if (isDigit(EscapedChar)) { in AnalyzeAsmString() 715 while (CurPtr != StrEnd && isDigit(*CurPtr)) in AnalyzeAsmString()
|
/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/Symbolize/ |
H A D | Symbolize.cpp | 729 all_of(drop_begin(SymbolName, AtPos + 1), isDigit)) { in demanglePE32ExternCFunc()
|
/freebsd/contrib/llvm-project/clang/utils/TableGen/ |
H A D | ClangDiagnosticsEmitter.cpp | 1228 return isUpper(C) || isDigit(C) || C == '+' || C == '_'; in isExemptAtStart() 1357 if (isDigit(FullDiagText.back()) && *(FullDiagText.end() - 2) == '}') { in verifyDiagnosticWording()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaModule.cpp | 358 llvm::all_of(FirstComponentName.drop_front(3), &llvm::isDigit)))) in ActOnModuleDecl()
|
/freebsd/contrib/llvm-project/clang/lib/Frontend/ |
H A D | VerifyDiagnosticConsumer.cpp | 214 while (isDigit(PEnd[-1]) || PEnd[-1] == '-') in Search()
|