HomeSort by relevance Sort by last modified time
    Searched refs:api_check (Results 1 - 6 of 6) sorted by null

  /external/chromium_org/third_party/skia/third_party/lua/src/
lapi.h 14 #define api_incr_top(L) {L->top++; api_check(L, L->top <= L->ci->top, \
20 #define api_checknelems(L,n) api_check(L, (n) < (L->top - L->ci->func), \
lapi.c 49 #define api_checkvalidindex(L, o) api_check(L, isvalid(o), "invalid index")
52 api_check(L, isstackindex(i, o), "index not in the stack")
59 api_check(L, idx <= ci->top - (ci->func + 1), "unacceptable index");
64 api_check(L, idx != 0 && -idx <= L->top - (ci->func + 1), "invalid index");
71 api_check(L, idx <= MAXUPVAL + 1, "upvalue index too large");
117 api_check(from, G(from) == G(to), "moving among independent states");
118 api_check(from, to->ci->top - to->top >= n, "not enough elements to move");
169 api_check(L, idx <= L->stack_last - (func + 1), "new top too large");
175 api_check(L, -(idx+1) <= (L->top - (func + 1)), "invalid new top");
327 default: api_check(L, 0, "invalid option")
    [all...]
lmem.c 86 api_check(L, nsize > realosize,
llimits.h 85 #define api_check(l,e,msg) luai_apicheck(l,(e) && msg) macro
ldebug.c 275 api_check(L, ttisfunction(func), "function expected");
ldo.c 573 api_check(L, k == NULL, "hooks cannot continue after yielding");

Completed in 74 milliseconds