Home
last modified time | relevance | path

Searched defs:IsDigit (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/lldb/source/ValueObject/
H A DDILLexer.cpp57 static bool IsDigit(char c) { return '0' <= c && c <= '9'; } in IsDigit() function
/freebsd/contrib/llvm-project/compiler-rt/lib/sanitizer_common/
H A Dsanitizer_common.h512 inline bool IsDigit(int c) { in IsDigit() function
/freebsd/contrib/llvm-project/llvm/include/llvm/TableGen/
H A DRecord.h2120 bool IsDigit = isDigit(Curr[I]); in RecordParts() local
/freebsd/contrib/sqlite3/
H A Dshell.c237 #define IsDigit(X) isdigit((unsigned char)X) macro