Home
last modified time | relevance | path

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

/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/
Dcharconv_parse.cc183 bool IsDigit<10>(char ch) { in IsDigit() function
187 bool IsDigit<16>(char ch) { in IsDigit() function
/third_party/skia/third_party/externals/abseil-cpp/absl/strings/internal/str_format/
Dchecker.h85 constexpr bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function
/third_party/icu/icu4c/source/i18n/
Ddouble-conversion-strtod.cpp459 static bool IsDigit(const char d) { in IsDigit() function
/third_party/skia/third_party/externals/icu/source/i18n/
Ddouble-conversion-strtod.cpp459 static bool IsDigit(const char d) { in IsDigit() function
/third_party/icu/vendor/double-conversion/upstream/double-conversion/
Dstrtod.cc444 static bool IsDigit(const char d) { in IsDigit() function
/third_party/skia/m133/third_party/externals/icu/source/i18n/
Ddouble-conversion-strtod.cpp459 static bool IsDigit(const char d) { in IsDigit() function
/third_party/mindspore/mindspore-src/source/mindspore/core/utils/
Dlog_adapter.cc465 static inline bool IsDigit(char ch) { return ch >= '0' && ch <= '9'; } in IsDigit() function
/third_party/skia/third_party/externals/abseil-cpp/absl/debugging/internal/
Ddemangle.cc383 static bool IsDigit(char c) { return c >= '0' && c <= '9'; } in IsDigit() function
/third_party/FatFs/source/
Dff.c50 #define IsDigit(c) ((c) >= '0' && (c) <= '9') macro
/third_party/protobuf/src/google/protobuf/
Ddescriptor.cc546 static bool IsDigit(char c) { return '0' <= c && c <= '9'; } in IsDigit() function in google::protobuf::__anona654feba0111::FlatAllocatorImpl
/third_party/sqlite/src/
Dshell.c242 #define IsDigit(X) isdigit((unsigned char)X) macro