Home
last modified time | relevance | path

Searched refs:lisdigit (Results 1 – 3 of 3) sorted by relevance

/external/lua/src/
Dlctype.h59 #define lisdigit(c) testprop(c, MASK(DIGITBIT)) macro
85 #define lisdigit(c) (isdigit(c)) macro
Dlobject.c164 if (lisdigit(c)) return c - '0'; in luaO_hexavalue()
230 if (!lisdigit(cast_uchar(*s))) in lua_strx2number()
232 while (lisdigit(cast_uchar(*s))) /* read exponent */ in lua_strx2number()
314 for (; lisdigit(cast_uchar(*s)); s++) { in l_str2int()
Dllex.c218 lua_assert(lisdigit(ls->current)); in read_numeral()
356 for (i = 0; i < 3 && lisdigit(ls->current); i++) { /* read up to 3 digits */ in readdecesc()
405 esccheck(ls, lisdigit(ls->current), "invalid escape sequence"); in read_string()
513 else if (!lisdigit(ls->current)) return '.'; in llex()