| /openbsd-src/lib/libform/ |
| H A D | fty_int.c | 42 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro 44 #define isDigit(c) isdigit(UChar(c)) 208 else if (!isDigit(list[n])) in Check_This_Field() 264 return ((isDigit(UChar(c)) || (c == '-')) ? TRUE : FALSE); in Check_This_Character()
|
| H A D | fty_num.c | 52 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro 54 #define isDigit(c) isdigit(UChar(c)) 236 else if (!isDigit(list[n])) in Check_This_Field() 305 return ((isDigit(c) || in Check_This_Character()
|
| /openbsd-src/gnu/llvm/llvm/lib/Demangle/ |
| H A D | RustDemangle.cpp | 173 static inline bool isDigit(const char C) { return '0' <= C && C <= '9'; } in isDigit() function 185 return isDigit(C) || isLower(C) || isUpper(C) || C == '_'; in isValid() 908 } else if (isDigit(C)) { in parseBase62Number() 938 if (!isDigit(C)) { in parseDecimalNumber() 950 while (isDigit(look())) { in parseDecimalNumber() 984 if (isDigit(C)) in parseHexNumber() 1056 if (isDigit(C)) { in decodePunycodeDigit()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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() 406 if (Str[0] == '0' && Str.size() > 1 && isDigit(Str[1])) { in GetAutoSenseRadix()
|
| H A D | RISCVISAInfo.cpp | 141 while (Pos > 0 && isDigit(Ext[Pos])) in findFirstNonVersionCharacter() 143 if (Pos > 0 && Ext[Pos] == 'p' && isDigit(Ext[Pos - 1])) { in findFirstNonVersionCharacter() 145 while (Pos > 0 && isDigit(Ext[Pos])) in findFirstNonVersionCharacter() 376 MajorStr = In.take_while(isDigit); in getExtensionVersion() 380 MinorStr = In.take_while(isDigit); in getExtensionVersion() 545 if (!isDigit(ExtName.back())) in parseNormalizedArchString()
|
| /openbsd-src/gnu/llvm/clang/lib/Frontend/ |
| H A D | LayoutOverrideSource.cpp | 131 while (!LineStr.empty() && isDigit(LineStr[0])) { in LayoutOverrideSource() 134 while (Idx < LineStr.size() && isDigit(LineStr[Idx])) in LayoutOverrideSource()
|
| H A D | VerifyDiagnosticConsumer.cpp | 214 while (isDigit(PEnd[-1]) || PEnd[-1] == '-') in Search()
|
| /openbsd-src/gnu/llvm/lld/Common/ |
| H A D | Strings.cpp | 66 return !s.empty() && !isDigit(s[0]) && in isValidCIdentifier()
|
| /openbsd-src/gnu/llvm/clang/lib/Basic/ |
| H A D | Diagnostic.cpp | 598 if (!isDigit(*I) && !isPunctuation(*I)) { in ScanFormat() 599 for (I++; I != E && !isDigit(*I) && *I != '{'; I++) ; in ScanFormat() 905 if (!isDigit(DiagStr[0])) { in FormatDiagnostic() 924 assert(isDigit(*DiagStr) && "Invalid format for argument in diagnostic"); in FormatDiagnostic() 932 assert(*DiagStr == ',' && isDigit(*(DiagStr + 1)) && in FormatDiagnostic()
|
| H A D | TargetInfo.cpp | 638 if (isDigit(Name[0])) { in isValidGCCRegisterName() 681 if (isDigit(Name[0])) { in getNormalizedGCCRegisterName()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Basic/ |
| H A D | CharInfo.h | 99 LLVM_READONLY inline bool isDigit(unsigned char c) { in isDigit() function
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/ADT/ |
| H A D | StringExtras.h | 96 inline bool isDigit(char C) { return C >= '0' && C <= '9'; } in isDigit() function 108 inline bool isAlnum(char C) { return isAlpha(C) || isDigit(C); } in isAlnum()
|
| /openbsd-src/gnu/llvm/clang/include/clang/Lex/ |
| H A D | LiteralSupport.h | 170 while (ptr != ThisTokEnd && (isDigit(*ptr) || isDigitSeparator(*ptr))) in SkipDigits()
|
| /openbsd-src/gnu/llvm/llvm/lib/WindowsDriver/ |
| H A D | MSVCPaths.cpp | 213 while (*sp && !llvm::isDigit(*sp)) in getSystemRegistryString() 218 while (*ep && (llvm::isDigit(*ep) || (*ep == '.'))) in getSystemRegistryString()
|
| /openbsd-src/gnu/llvm/clang/lib/Lex/ |
| H A D | TokenConcatenation.cpp | 269 isDigit(FirstChar) || in AvoidConcat()
|
| H A D | LiteralSupport.cpp | 1330 if (isDigit(*s)) { in ParseNumberStartingWithZero()
|
| /openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | AsmPrinterInlineAsm.cpp | 235 while (isDigit(*IDEnd)) in EmitInlineAsmStr()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPULibFunc.cpp | 491 while (!s.empty() && isDigit(s.front())) { in eatNumber() 612 if (isDigit(TC)) { in parseItaniumParam()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/TableGen/ |
| H A D | Record.h | 2063 bool IsDigitPart = isDigit(Curr[0]); in RecordParts() 2065 bool IsDigit = isDigit(Curr[I]); in RecordParts() 2070 IsDigitPart = isDigit(Curr[I]); in RecordParts()
|
| /openbsd-src/gnu/llvm/clang/lib/AST/ |
| H A D | CommentLexer.cpp | 32 return isDigit(C); in isHTMLDecimalCharacterReferenceCharacter()
|
| H A D | Stmt.cpp | 709 if (isDigit(EscapedChar)) { in AnalyzeAsmString() 714 while (CurPtr != StrEnd && isDigit(*CurPtr)) in AnalyzeAsmString()
|
| /openbsd-src/gnu/llvm/llvm/lib/DebugInfo/Symbolize/ |
| H A D | Symbolize.cpp | 659 all_of(drop_begin(SymbolName, AtPos + 1), isDigit)) { in demanglePE32ExternCFunc()
|
| /openbsd-src/gnu/llvm/clang/lib/Sema/ |
| H A D | SemaModule.cpp | 278 llvm::all_of(FirstComponentName.drop_front(3), &llvm::isDigit)))) { in ActOnModuleDecl()
|
| /openbsd-src/gnu/llvm/lld/ELF/ |
| H A D | ScriptParser.cpp | 1348 return !s.empty() && !isDigit(s[0]) && llvm::all_of(s, valid); in isValidSymbolName()
|