Home
last modified time | relevance | path

Searched refs:isDigit (Results 1 – 22 of 22) sorted by relevance

/freebsd-12.1/contrib/ncurses/form/
H A Dfty_int.c40 #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 Dfty_num.c50 #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 DAsmLexer.cpp72 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 DStringRef.cpp67 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 DRISCV.cpp61 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 DLayoutOverrideSource.cpp132 while (!LineStr.empty() && isDigit(LineStr[0])) { in LayoutOverrideSource()
135 while (Idx < LineStr.size() && isDigit(LineStr[Idx])) in LayoutOverrideSource()
H A DVerifyDiagnosticConsumer.cpp298 while (isDigit(PEnd[-1]) || PEnd[-1] == '-') in Search()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Basic/
H A DDiagnostic.cpp567 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 DTargetInfo.cpp453 if (isDigit(Name[0])) { in isValidGCCRegisterName()
496 if (isDigit(Name[0])) { in getNormalizedGCCRegisterName()
/freebsd-12.1/contrib/llvm/include/llvm/ADT/
H A DStringExtras.h77 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 DCharInfo.h94 LLVM_READONLY inline bool isDigit(unsigned char c) { in isDigit() function
/freebsd-12.1/contrib/llvm/tools/clang/include/clang/Lex/
H A DLiteralSupport.h158 while (ptr != ThisTokEnd && (isDigit(*ptr) || isDigitSeparator(*ptr))) in SkipDigits()
/freebsd-12.1/contrib/llvm/lib/Target/AMDGPU/
H A DAMDGPULibFunc.cpp500 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 DTokenConcatenation.cpp265 isDigit(FirstChar) || in AvoidConcat()
H A DLiteralSupport.cpp951 if (isDigit(*s)) { in ParseNumberStartingWithZero()
H A DPPDirectives.cpp1055 if (!isDigit(DigitTokBegin[i])) { in GetLineValue()
H A DModuleMap.cpp345 if (isDigit(Name[0])) in sanitizeFilenameAsIdentifier()
/freebsd-12.1/contrib/llvm/tools/clang/lib/AST/
H A DStmt.cpp617 if (isDigit(EscapedChar)) { in AnalyzeAsmString()
622 while (CurPtr != StrEnd && isDigit(*CurPtr)) in AnalyzeAsmString()
H A DCommentLexer.cpp33 return isDigit(C); in isHTMLDecimalCharacterReferenceCharacter()
/freebsd-12.1/contrib/llvm/tools/clang/lib/Driver/ToolChains/
H A DMSVC.cpp939 while (*sp && !isDigit(*sp)) in getSystemRegistryString()
944 while (*ep && (isDigit(*ep) || (*ep == '.'))) in getSystemRegistryString()
/freebsd-12.1/contrib/llvm/include/llvm/TableGen/
H A DRecord.h1702 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 DParseDecl.cpp808 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()