Home
last modified time | relevance | path

Searched refs:luaL_dostring (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/lutok/
H A Dstate_test.cpp203 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 Ddebug_test.cpp42 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 DLua.cpp66 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 Dinterp_lua.c174 if ((status = luaL_dostring(luap, line)) != 0) { in interp_run()
/freebsd/stand/liblua/
H A Dgfx_utils.c259 if (luaL_dostring(L, in gfx_init_md()
/freebsd/sys/contrib/openzfs/include/sys/lua/
H A Dlauxlib.h114 #define luaL_dostring(L, s) \ macro
/freebsd/contrib/lua/src/
H A Dlauxlib.h147 #define luaL_dostring(L, s) \ macro
/freebsd/lib/clang/liblldb/
H A DLLDBWrapLua.cpp2717 ok=luaL_dostring(L,str); /* looks like this is lua 5.1.X or later, good */ in SWIG_Lua_dostring()