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
91 #define lisdigit(c) (isdigit(c))
Dllex.c228 lua_assert(lisdigit(ls->current)); in read_numeral()
368 for (i = 0; i < 3 && lisdigit(ls->current); i++) { /* read up to 3 digits */ in readdecesc()
417 esccheck(ls, lisdigit(ls->current), "invalid escape sequence"); in read_string()
525 else if (!lisdigit(ls->current)) return '.'; in llex()
Dlobject.c136 if (lisdigit(c)) return c - '0'; in luaO_hexavalue()
202 if (!lisdigit(cast_uchar(*s))) in lua_strx2number()
204 while (lisdigit(cast_uchar(*s))) /* read exponent */ in lua_strx2number()
291 for (; lisdigit(cast_uchar(*s)); s++) { in l_str2int()