Searched refs:is_digit (Results 1 – 6 of 6) sorted by relevance
66 inline bool is_digit(char c) { return check_ascii_range(c, '0', '9'); } in is_digit() function70 return is_digit(c) || check_ascii_range(c & 0xDF, 'a' & 0xDF, 'f' & 0xDF); in is_xdigit()74 inline bool is_alnum(char c) { return is_alpha(c) || is_digit(c); } in is_alnum()298 while (*s && !is_digit(*s)) s++;372 while (*s && !is_digit(*s)) s++;
95 STATIC bool is_digit(mp_lexer_t *lex) { in is_digit() function131 return is_head_of_identifier(lex) || is_digit(lex); in is_tail_of_identifier()704 } else if (is_digit(lex) || (is_char(lex, '.') && is_following_digit(lex))) { in mp_lexer_to_next()729 } else if (is_letter(lex) || is_digit(lex) || is_char(lex, '.')) { in mp_lexer_to_next()
113 static inline int is_digit(int c) { in is_digit() function580 if (c != 0 || is_digit(*p)) in lre_parse_escape()1246 } else if (!is_digit(p[1])) { in re_parse_term()1256 if (is_digit(*p1)) { in re_parse_term()1404 if (is_digit(*p)) { in re_parse_term()1522 if (!is_digit(p[1])) { in re_parse_term()1532 if (is_digit(*p)) { in re_parse_term()
203 function is_digit(c) { function209 (is_alpha(c) || is_digit(c) || c == '_' || c == '$');1543 if (is_digit(c)) {
1435 static inline int is_digit(int c) in is_digit() function2965 if (len == 0 || !is_digit(*str)) { in JS_NewAtomLen()10176 if (is_digit((uint8_t)*p1)) { in js_atof2()10178 while (is_digit((uint8_t)*p) || (*p == sep && is_digit((uint8_t)p[1]))) in js_atof2()20731 if (is_digit(p[1]) && (s->cur_func->js_mode & JS_MODE_STRICT)) { in next_token()21167 if (!s->ext_json || !is_digit(p[1])) in json_next_token()21171 if (is_digit(p[1])) in json_next_token()21175 if (!is_digit(p[1])) in json_next_token()
209 function is_digit(c) { function215 (is_alpha(c) || is_digit(c) || c == '_' || c == '$');1564 if (is_digit(c)) {
Completed in 102 milliseconds