Searched refs:luaL_dostring (Results 1 – 8 of 8) sorted by relevance
/freebsd/contrib/lutok/ |
H A D | state_test.cpp | 203 ATF_REQUIRE(luaL_dostring(raw(state), "test_variable = 3") == 0); in ATF_TEST_CASE_BODY() 224 ATF_REQUIRE(luaL_dostring(raw(state), "global_variable = 'hello'") == 0); in ATF_TEST_CASE_BODY() 239 ATF_REQUIRE(luaL_dostring(raw(state), "meta = { foo = 567 }; " in ATF_TEST_CASE_BODY() 254 ATF_REQUIRE(luaL_dostring(raw(state), "meta = { foo = 567 }; " in ATF_TEST_CASE_BODY() 267 ATF_REQUIRE(luaL_dostring(raw(state), "meta = { foo = 567 }; " in ATF_TEST_CASE_BODY() 285 ATF_REQUIRE(luaL_dostring(raw(state), "t = {}") == 0); in ATF_TEST_CASE_BODY() 296 ATF_REQUIRE(luaL_dostring(raw(state), "t = { a = 1, bar = 234 }") == 0); in ATF_TEST_CASE_BODY() 322 ATF_REQUIRE(luaL_dostring(raw(state), in ATF_TEST_CASE_BODY() 395 luaL_dostring(raw(state), "function my_func(a, b) return a + b; end"); in ATF_TEST_CASE_BODY() 485 luaL_dostring(raw(state), "t = {3, 4, 5}"); in ATF_TEST_CASE_BODY() [all …]
|
H A D | debug_test.cpp | 42 ATF_REQUIRE(luaL_dostring(raw(state), "\n\nfunction hello() end\n" in ATF_TEST_CASE_BODY() 54 ATF_REQUIRE(luaL_dostring(raw(state), "error('Hello')") == 1); in ATF_TEST_CASE_BODY()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/ScriptInterpreter/Lua/ |
H A D | Lua.cpp | 66 if (luaL_dostring(m_lua_state, func_str.c_str()) != LUA_OK) { in RegisterBreakpointCallback() 94 if (luaL_dostring(m_lua_state, func_str.c_str()) != LUA_OK) { in RegisterWatchpointCallback()
|
/freebsd/stand/common/ |
H A D | interp_lua.c | 174 if ((status = luaL_dostring(luap, line)) != 0) { in interp_run()
|
/freebsd/stand/liblua/ |
H A D | gfx_utils.c | 259 if (luaL_dostring(L, in gfx_init_md()
|
/freebsd/sys/contrib/openzfs/include/sys/lua/ |
H A D | lauxlib.h | 114 #define luaL_dostring(L, s) \ macro
|
/freebsd/contrib/lua/src/ |
H A D | lauxlib.h | 147 #define luaL_dostring(L, s) \ macro
|
/freebsd/lib/clang/liblldb/ |
H A D | LLDBWrapLua.cpp | 2717 ok=luaL_dostring(L,str); /* looks like this is lua 5.1.X or later, good */ in SWIG_Lua_dostring()
|