Home
last modified time | relevance | path

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

/openbsd/src/lib/libform/
Dfty_int.c42 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro
Dfty_num.c52 #define isDigit(c) (iswdigit((wint_t)(c)) || isdigit(UChar(c))) macro
/openbsd/src/gnu/llvm/clang/include/clang/Basic/
DCharInfo.h99 LLVM_READONLY inline bool isDigit(unsigned char c) { in isDigit() function
/openbsd/src/gnu/llvm/llvm/include/llvm/ADT/
DStringExtras.h96 inline bool isDigit(char C) { return C >= '0' && C <= '9'; } in isDigit() function
/openbsd/src/gnu/llvm/llvm/lib/Demangle/
DRustDemangle.cpp173 static inline bool isDigit(const char C) { return '0' <= C && C <= '9'; } in isDigit() function