Lines Matching refs:kIndexStackTop
47 static constexpr const int kIndexStackTop = -1; variable
286 << lua_type(state_, /*idx=*/kIndexStackTop);
292 result.push_back(Read<T>(/*index=*/kIndexStackTop));
413 int64 pos = lua_isnil(env->state(), /*idx=*/kIndexStackTop) in Next()
415 : env->Read<int64>(/*index=*/kIndexStackTop); in Next()
443 switch (lua_type(env->state(), kIndexStackTop)) { in Dispatch()
446 const int64 index = env->Read<int64>(/*index=*/kIndexStackTop) - 1; in Dispatch()
455 return key_callback(env->ReadString(kIndexStackTop)); in Dispatch()
459 << lua_type(env->state(), kIndexStackTop); in Dispatch()
468 switch (lua_type(env->state(), kIndexStackTop)) { in Dispatch()
471 const int64 index = env->Read<int64>(/*index=*/kIndexStackTop) - 1; in Dispatch()
481 << lua_type(env->state(), kIndexStackTop); in Dispatch()
573 if (lua_isnil(state_, kIndexStackTop)) { in Next()