HomeSort by relevance Sort by last modified time
    Searched refs:is_digit (Results 1 - 25 of 30) sorted by null

1 2

  /external/icu/icu4c/source/tools/tzcode/
scheck.c 39 if (is_digit(*fp)) {
44 } while (is_digit(c));
private.h 113 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
localtime.c 653 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
691 if (strp == NULL || !is_digit(c = *strp))
699 } while (is_digit(c));
806 } else if (is_digit(*strp)) {
    [all...]
  /external/skia/src/utils/
SkParse.cpp 23 static inline bool is_digit(int c) function
35 if (is_digit(c))
149 if (!is_digit(*str))
153 while (is_digit(*str))
175 if (!is_digit(*str))
179 while (is_digit(*str))
187 while (is_digit(*str))
SkParsePath.cpp 18 static inline bool is_digit(int c) { function
94 if (is_digit(ch) || ch == '-' || ch == '+' || ch == '.') {
  /external/skqp/src/utils/
SkParse.cpp 23 static inline bool is_digit(int c) function
35 if (is_digit(c))
149 if (!is_digit(*str))
153 while (is_digit(*str))
175 if (!is_digit(*str))
179 while (is_digit(*str))
187 while (is_digit(*str))
SkParsePath.cpp 18 static inline bool is_digit(int c) { function
94 if (is_digit(ch) || ch == '-' || ch == '+' || ch == '.') {
  /device/linaro/bootloader/edk2/StdLib/LibC/Time/
TimeVals.h 65 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
ZoneProc.c 150 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
173 if (strp == NULL || !is_digit(c = *strp))
181 } while (is_digit(c));
294 } else if (is_digit(*strp)) {
  /external/syslinux/core/fs/pxe/
dnsresolv.c 67 while (is_digit(*p)) {
pxe.h 33 #define is_digit(c) (((c) >= '0') && ((c) <= '9')) macro
  /external/libxkbcommon/xkbcommon/src/
utils.h 138 is_digit(char ch) function
146 return is_alpha(ch) || is_digit(ch);
  /device/linaro/bootloader/edk2/StdLib/LibC/Stdio/
vsnprintf_ss.c 73 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro
215 while (is_digit(ch)) {
235 } while (is_digit(ch));
vfwprintf.c 256 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro
795 while (is_digit(*cp)) { \
931 while (is_digit(ch)) {
950 } while (is_digit(ch));
    [all...]
  /external/libxkbcommon/xkbcommon/src/xkbcomp/
scanner.c 40 while (is_digit(peek(s))) next(s);
42 while (is_digit(peek(s))) next(s);
rules.c 365 if (s[0] != '[' || !is_digit(s[1]) || s[2] != ']')
  /external/wpa_supplicant_8/src/ap/
taxonomy.c 36 int is_digit = s >= '0' && s <= '9'; local
38 if (is_lower || is_upper || is_digit) {
  /bionic/libc/stdio/
printf_common.h 116 #define is_digit(c) ((unsigned)to_digit(c) <= 9) macro
276 while (is_digit(*cp)) { \
367 while (is_digit(*cp)) { \
417 while (is_digit(ch)) {
436 } while (is_digit(ch));
vfprintf.cpp 223 while (is_digit(ch)) {
261 } while (is_digit(ch));
vfwprintf.cpp 212 while (is_digit(ch)) {
250 } while (is_digit(ch));
  /external/mesa3d/src/gallium/auxiliary/tgsi/
tgsi_text.c 50 static boolean is_digit( const char *cur ) function
57 return is_digit( cur ) || is_alpha_underscore( cur );
184 if (is_digit( cur )) {
186 while (is_digit( cur ))
217 while (is_alpha_underscore( cur ) || is_digit( cur )) {
248 if (is_digit( cur )) {
251 while (is_digit( cur ))
256 if (is_digit( cur )) {
259 while (is_digit( cur ))
269 if (is_digit( cur ))
    [all...]
  /external/boringssl/src/crypto/base64/
base64.c 263 const uint8_t is_digit = constant_time_in_range_8(a, '0', '9'); local
271 ret = constant_time_select_8(is_digit, a - '0' + 52, ret); // [52,62)
  /external/syslinux/core/legacynet/
dnsresolv.c 186 while (is_digit(*p)) {
  /bionic/libc/tzcode/
private.h 159 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
localtime.c 745 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' &&
783 if (strp == NULL || !is_digit(c = *strp))
791 } while (is_digit(c));
898 } else if (is_digit(*strp)) {
    [all...]

Completed in 713 milliseconds

1 2