Home
last modified time | relevance | path

Searched refs:is_digit (Results 1 – 16 of 16) sorted by relevance

/external/skqp/src/utils/
DSkParse.cpp23 static inline bool is_digit(int c) in is_digit() function
35 if (is_digit(c)) in to_hex()
149 if (!is_digit(*str)) in FindS32()
153 while (is_digit(*str)) in FindS32()
175 if (!is_digit(*str)) in FindMSec()
179 while (is_digit(*str)) in FindMSec()
187 while (is_digit(*str)) in FindMSec()
DSkParsePath.cpp18 static inline bool is_digit(int c) { in is_digit() function
94 if (is_digit(ch) || ch == '-' || ch == '+' || ch == '.') { in FromSVGString()
/external/skia/src/utils/
DSkParse.cpp23 static inline bool is_digit(int c) in is_digit() function
35 if (is_digit(c)) in to_hex()
149 if (!is_digit(*str)) in FindS32()
153 while (is_digit(*str)) in FindS32()
175 if (!is_digit(*str)) in FindMSec()
179 while (is_digit(*str)) in FindMSec()
187 while (is_digit(*str)) in FindMSec()
DSkParsePath.cpp18 static inline bool is_digit(int c) { in is_digit() function
94 if (is_digit(ch) || ch == '-' || ch == '+' || ch == '.') { in FromSVGString()
/external/icu/icu4c/source/tools/tzcode/
Dscheck.c39 if (is_digit(*fp)) { in scheck()
44 } while (is_digit(c)); in scheck()
Dprivate.h113 #define is_digit(c) ((unsigned)(c) - '0' <= 9) macro
Dlocaltime.c653 while ((c = *strp) != '\0' && !is_digit(c) && c != ',' && c != '-' && in getzname()
691 if (strp == NULL || !is_digit(c = *strp)) in getnum()
699 } while (is_digit(c)); in getnum()
806 } else if (is_digit(*strp)) { in getrule()
/external/mesa3d/src/gallium/auxiliary/tgsi/
Dtgsi_text.c50 static boolean is_digit( const char *cur ) in is_digit() function
57 return is_digit( cur ) || is_alpha_underscore( cur ); in is_digit_alpha_underscore()
184 if (is_digit( cur )) { in parse_uint()
186 while (is_digit( cur )) in parse_uint()
217 while (is_alpha_underscore( cur ) || is_digit( cur )) { in parse_identifier()
248 if (is_digit( cur )) { in parse_float()
251 while (is_digit( cur )) in parse_float()
256 if (is_digit( cur )) { in parse_float()
259 while (is_digit( cur )) in parse_float()
269 if (is_digit( cur )) { in parse_float()
[all …]
/external/libxkbcommon/xkbcommon/src/
Dutils.h138 is_digit(char ch) in is_digit() function
146 return is_alpha(ch) || is_digit(ch); in is_alnum()
/external/libxkbcommon/xkbcommon/src/xkbcomp/
Dscanner.c40 while (is_digit(peek(s))) next(s); in number()
42 while (is_digit(peek(s))) next(s); in number()
Drules.c365 if (s[0] != '[' || !is_digit(s[1]) || s[2] != ']') in extract_layout_index()
/external/wpa_supplicant_8/src/ap/
Dtaxonomy.c36 int is_digit = s >= '0' && s <= '9'; in no_mischief_strncpy() local
38 if (is_lower || is_upper || is_digit) { in no_mischief_strncpy()
/external/syslinux/core/fs/pxe/
Ddnsresolv.c67 while (is_digit(*p)) { in parse_dotquad()
Dpxe.h33 #define is_digit(c) (((c) >= '0') && ((c) <= '9')) macro
/external/boringssl/src/crypto/base64/
Dbase64.c263 const uint8_t is_digit = constant_time_in_range_8(a, '0', '9'); in base64_ascii_to_bin() local
271 ret = constant_time_select_8(is_digit, a - '0' + 52, ret); // [52,62) in base64_ascii_to_bin()
/external/syslinux/core/legacynet/
Ddnsresolv.c186 while (is_digit(*p)) { in parse_dotquad()