Home
last modified time | relevance | path

Searched refs:cvt2str (Results 1 – 4 of 4) sorted by relevance

/external/lua/src/
Dlvm.h17 #define cvt2str(o) ttisnumber(o) macro
19 #define cvt2str(o) 0 /* no conversion from numbers to strings */ macro
Dlapi.c285 return (ttisstring(o) || cvt2str(o)); in lua_isstring()
376 if (!cvt2str(o)) { /* not convertible? */ in lua_tolstring()
Dlvm.c455 (ttisstring(o) || (cvt2str(o) && (luaO_tostring(L, o), 1)))
479 if (!(ttisstring(top-2) || cvt2str(top-2)) || !tostring(L, top-1)) in luaV_concat()
Dldebug.c592 if (ttisstring(p1) || cvt2str(p1)) p1 = p2; in luaG_concaterror()