Home
last modified time | relevance | path

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

/AliOS-Things-master/components/ai_agent/src/engine/tflite-micro/third_party/flatbuffers/include/flatbuffers/
A Dutil.h66 inline bool is_digit(char c) { return check_ascii_range(c, '0', '9'); } in is_digit() function
70 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++;
/AliOS-Things-master/components/py_engine/engine/py/
A Dlexer.c95 STATIC bool is_digit(mp_lexer_t *lex) { in is_digit() function
131 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()
/AliOS-Things-master/components/amp/engine/quickjs_engine/quickjs/
A Dlibregexp.c113 static inline int is_digit(int c) { in is_digit() function
580 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()
A Drepl.js203 function is_digit(c) { function
209 (is_alpha(c) || is_digit(c) || c == '_' || c == '$');
1543 if (is_digit(c)) {
A Dquickjs.c1435 static inline int is_digit(int c) in is_digit() function
2965 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()
/AliOS-Things-master/components/amp/jslib/src/
A Drepl.js209 function is_digit(c) { function
215 (is_alpha(c) || is_digit(c) || c == '_' || c == '$');
1564 if (is_digit(c)) {

Completed in 102 milliseconds