Searched refs:checktag (Results 1 – 1 of 1) sorted by relevance
/external/chromium_org/third_party/skia/third_party/lua/src/ |
D | lobject.h | 131 #define checktag(o,t) (rttype(o) == (t)) macro 133 #define ttisnumber(o) checktag((o), LUA_TNUMBER) 134 #define ttisnil(o) checktag((o), LUA_TNIL) 135 #define ttisboolean(o) checktag((o), LUA_TBOOLEAN) 136 #define ttislightuserdata(o) checktag((o), LUA_TLIGHTUSERDATA) 138 #define ttisshrstring(o) checktag((o), ctb(LUA_TSHRSTR)) 139 #define ttislngstring(o) checktag((o), ctb(LUA_TLNGSTR)) 140 #define ttistable(o) checktag((o), ctb(LUA_TTABLE)) 143 #define ttisCclosure(o) checktag((o), ctb(LUA_TCCL)) 144 #define ttisLclosure(o) checktag((o), ctb(LUA_TLCL)) [all …]
|