Home
last modified time | relevance | path

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

/llvm-project/libc/test/src/__support/CPP/
H A Dstringview_test.cpp112 bool isDigit(char c) { return c >= '0' && c <= '9'; } isDigit() function
/llvm-project/clang/unittests/Basic/
H A DCharInfoTest.cpp159 TEST(CharInfoTest, isDigit) { in TEST() argument
/llvm-project/clang/include/clang/Basic/
H A DCharInfo.h114 LLVM_READONLY inline bool isDigit(unsigned char c) { in isDigit() function
/llvm-project/llvm/include/llvm/ADT/
H A DStringExtras.h105 inline bool isDigit(char C) { return C >= '0' && C <= '9'; } in isDigit() function
/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp170 static inline bool isDigit(const char C) { return '0' <= C && C <= '9'; } in isDigit() function