Home
last modified time | relevance | path

Searched defs:isDigit (Results 1 – 5 of 5) sorted by relevance

/freebsd-src/contrib/ncurses/form/
H A Dfty_int.c41 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro
H A Dfty_num.c51 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro
/freebsd-src/contrib/llvm-project/clang/include/clang/Basic/
H A DCharInfo.h99 LLVM_READONLY inline bool isDigit(unsigned char c) { isDigit() function
/freebsd-src/contrib/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h105 inline bool isDigit(char C) { return C >= '0' && C <= '9'; } in isDigit() function
/freebsd-src/contrib/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp170 static inline bool isDigit(const char C) { return '0' <= C && C <= '9'; } in isDigit() function