Searched refs:lua_isinteger (Results 1 – 10 of 10) sorted by relevance
/aosp_15_r20/external/lua/src/ |
H A D | lmathlib.c | 30 if (lua_isinteger(L, 1)) { in math_abs() 96 if (lua_isinteger(L, 1)) in math_floor() 107 if (lua_isinteger(L, 1)) in math_ceil() 118 if (lua_isinteger(L, 1) && lua_isinteger(L, 2)) { in math_fmod() 140 if (lua_isinteger(L ,1)) { in math_modf() 235 lua_pushstring(L, (lua_isinteger(L, 1)) ? "integer" : "float"); in math_type()
|
H A D | lua.h | 185 LUA_API int (lua_isinteger) (lua_State *L, int idx); variable
|
H A D | liolib.c | 660 int len = lua_isinteger(L, arg) in g_write()
|
H A D | lauxlib.c | 869 if (lua_isinteger(L, idx)) in luaL_tolstring()
|
H A D | lstrlib.c | 1165 if (!lua_isinteger(L, arg)) /* float? */ in addliteral()
|
H A D | lapi.c | 279 LUA_API int lua_isinteger (lua_State *L, int idx) { in lua_isinteger() function
|
/aosp_15_r20/external/rust/android-crates-io/crates/grpcio-sys/grpc/third_party/upb/lua/ |
D | upb.c | 64 static bool lua_isinteger(lua_State* L, int argn) { in lua_isinteger() function 186 if (lua_isinteger(L, narg)) { \
|
/aosp_15_r20/packages/services/Car/packages/ScriptExecutor/tests/unit/src/com/android/car/scriptexecutortest/unit/ |
D | JniUtilsTestHelper.cpp | 59 is_equal = lua_isinteger(luaState, /* idx = */ -1) && in hasValidNumberArray() 186 if (!lua_isinteger(luaState, -1)) in Java_com_android_car_scriptexecutortest_unit_JniUtilsTest_nativeHasIntValue() 313 if (!lua_isinteger(luaState, -1)) in Java_com_android_car_scriptexecutortest_unit_JniUtilsTest_nativeHasTableAtIndexWithIntValue()
|
/aosp_15_r20/packages/services/Car/packages/ScriptExecutor/src/ |
D | JniUtils.cpp | 248 } else if (lua_isinteger(lua, /* index = */ -1)) { in convertLuaTableToBundle() 315 if (lua_isinteger(lua, /* index = */ -1)) { in convertLuaTableToBundle()
|
/aosp_15_r20/external/mesa3d/src/intel/executor/ |
H A D | executor_main.c | 359 if (lua_type(L, key_idx) != LUA_TNUMBER || !lua_isinteger(L, key_idx)) in parse_execute_data() 722 assert(lua_isinteger(L, 2)); in l_dump()
|