Home
last modified time | relevance | path

Searched refs:luaL_loadbuffer (Results 1 – 10 of 10) sorted by relevance

/aosp_15_r20/external/lua/src/
H A Dlua.c185 return dochunk(L, luaL_loadbuffer(L, s, strlen(s), name)); in dostring()
483 int status = luaL_loadbuffer(L, retline, strlen(retline), "=stdin"); in addreturn()
502 int status = luaL_loadbuffer(L, line, len, "=stdin"); /* try it */ in multiline()
H A Dlauxlib.h153 #define luaL_loadbuffer(L,s,sz,n) luaL_loadbufferx(L,s,sz,n,NULL) macro
H A Dldblib.c418 if (luaL_loadbuffer(L, buffer, strlen(buffer), "=(debug command)") || in db_debug()
H A Dlauxlib.c816 return luaL_loadbuffer(L, s, strlen(s), s); in luaL_loadstring()
/aosp_15_r20/external/libtextclassifier/native/actions/
H A Dlua-ranker.cc98 if (luaL_loadbuffer(state_, ranker_code_.data(), ranker_code_.size(), in RankActions()
H A Dlua-actions.cc145 if (luaL_loadbuffer(state_, snippet_.data(), snippet_.size(), in SuggestActions()
/aosp_15_r20/external/libtextclassifier/native/utils/
H A Dregex-match.cc124 if (luaL_loadbuffer(state_, verifier_code_.data(), verifier_code_.size(), in Verify()
H A Dlua-utils_test.cc52 EXPECT_THAT(luaL_loadbuffer(state_, script.data(), script.size(), in RunScript()
H A Dlua-utils.cc348 if (luaL_loadbuffer(state_, snippet.data(), snippet.size(), in Compile()
/aosp_15_r20/external/libtextclassifier/native/utils/intents/
H A Djni-lua.cc639 status = luaL_loadbuffer(state_, generator_snippet.data(), in RunIntentGenerator()