Home
last modified time | relevance | path

Searched refs:lua_pushboolean (Results 1 – 17 of 17) sorted by relevance

/external/lua/src/
Dlcorolib.c61 lua_pushboolean(L, 0); in luaB_coresume()
66 lua_pushboolean(L, 1); in luaB_coresume()
155 lua_pushboolean(L, lua_isyieldable(co)); in luaB_yieldable()
162 lua_pushboolean(L, ismain); in luaB_corunning()
174 lua_pushboolean(L, 1); in luaB_close()
178 lua_pushboolean(L, 0); in luaB_close()
Dlbaselib.c152 lua_pushboolean(L, lua_rawequal(L, 1, 2)); in luaB_rawequal()
208 lua_pushboolean(L, res); in luaB_collectgarbage()
220 lua_pushboolean(L, res); in luaB_collectgarbage()
441 lua_pushboolean(L, 0); /* first result (false) */ in finishpcall()
453 lua_pushboolean(L, 1); /* first result if no errors */ in luaB_pcall()
469 lua_pushboolean(L, 1); /* first result */ in luaB_xpcall()
Dldblib.c70 lua_pushboolean(L, 1); in db_getuservalue()
122 lua_pushboolean(L, v); in settabsb()
444 lua_pushboolean(L, 0); in db_setcstacklimit()
Dloslib.c150 lua_pushboolean(L, stat); /* true if there is a shell */ in os_execute()
222 lua_pushboolean(L, value); in setboolfield()
Dlua.c590 lua_pushboolean(L, 1); /* signal for libraries to ignore env. vars. */ in pmain()
614 lua_pushboolean(L, 1); /* signal no errors */ in pmain()
Dloadlib.c396 lua_pushboolean(L, 1); /* return 'true' */ in lookforfunc()
675 lua_pushboolean(L, 1); /* use true as result */ in ll_require()
Dlauxlib.c248 lua_pushboolean(L, 1); in luaL_fileresult()
292 lua_pushboolean(L, 1); in luaL_execresult()
908 lua_pushboolean(L, 0); in luaL_setfuncs()
Dlua.h242 LUA_API void (lua_pushboolean) (lua_State *L, int b); variable
Dlmathlib.c165 lua_pushboolean(L, (lua_Unsigned)a < (lua_Unsigned)b); in math_ult()
Dliolib.c362 lua_pushboolean(L, toclose); /* close/not close file when finished */ in aux_lines()
Dlapi.c581 LUA_API void lua_pushboolean (lua_State *L, int b) { in lua_pushboolean() function
/external/rust/crates/grpcio-sys/grpc/third_party/upb/upb/bindings/lua/
Ddef.c103 lua_pushboolean(L, upb_fielddef_defaultbool(f)); break; in lupb_fielddef_default()
125 lua_pushboolean(L, upb_fielddef_hassubdef(f)); in lupb_fielddef_hassubdef()
137 lua_pushboolean(L, upb_fielddef_isextension(f)); in lupb_fielddef_isextension()
149 lua_pushboolean(L, upb_fielddef_lazy(f)); in lupb_fielddef_lazy()
172 lua_pushboolean(L, upb_fielddef_packed(f)); in lupb_fielddef_packed()
482 lua_pushboolean(L, upb_msgdef_mapentry(m)); in lupb_msgdef_mapentry()
Dmsg.c316 lua_pushboolean(L, val.bool_val); in lupb_pushmsgval()
/external/skqp/src/utils/
DSkLua.cpp163 lua_pushboolean(L, true); in setfield_bool_if()
179 lua_pushboolean(L, value); in setfield_boolean()
248 lua_pushboolean(fL, value); in pushBool()
719 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isAntiAlias()); in lpaint_isAntiAlias()
729 lua_pushboolean(L, get_obj<SkPaint>(L, 1)->isDither()); in lpaint_isDither()
772 lua_pushboolean(L, SkPaint::kStroke_Style == get_obj<SkPaint>(L, 1)->getStyle()); in lpaint_getStroke()
1190 lua_pushboolean(L, get_obj<SkMatrix>(L, 1)->invert(get_obj<SkMatrix>(L, 2))); in lmatrix_invert()
1320 lua_pushboolean(L, get_obj<SkPath>(L, 1)->isEmpty()); in lpath_isEmpty()
1328 lua_pushboolean(L, pred); in lpath_isRect()
1349 lua_pushboolean(L, pred); in lpath_isNestedFillRects()
/external/libtextclassifier/native/utils/intents/
Djni-lua.cc194 lua_pushboolean(state_, false); in HandleUserRestrictionsCallback()
233 lua_pushboolean(state_, false); in HandleUserRestrictionsCallback()
235 lua_pushboolean(state_, status_or_permission.ValueOrDie()); in HandleUserRestrictionsCallback()
/external/mesa3d/src/freedreno/decode/
Dscript.c193 lua_pushboolean(L, val.u); in pushdecval()
/external/libtextclassifier/native/utils/
Dlua-utils.h125 void Push(const bool value) const { lua_pushboolean(state_, value); } in Push()