Home
last modified time | relevance | path

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

/external/lua/src/
Dlua.c251 return dochunk(L, luaL_loadbuffer(L, s, strlen(s), name)); in dostring()
335 int status = luaL_loadbuffer(L, retline, strlen(retline), "=stdin"); in addreturn()
354 int status = luaL_loadbuffer(L, line, len, "=stdin"); /* try it */ in multiline()
Dlauxlib.h139 #define luaL_loadbuffer(L,s,sz,n) luaL_loadbufferx(L,s,sz,n,NULL) macro
Dldblib.c409 if (luaL_loadbuffer(L, buffer, strlen(buffer), "=(debug command)") || in db_debug()
Dlauxlib.c765 return luaL_loadbuffer(L, s, strlen(s), s); in luaL_loadstring()
/external/libtextclassifier/actions/
Dlua-ranker.cc98 if (luaL_loadbuffer(state_, ranker_code_.data(), ranker_code_.size(), in RankActions()
Dlua-actions.cc141 if (luaL_loadbuffer(state_, snippet_.data(), snippet_.size(), in SuggestActions()
/external/libtextclassifier/utils/
Dregex-match.cc121 if (luaL_loadbuffer(state_, verifier_code_.data(), verifier_code_.size(), in Verify()
Dlua-utils.cc283 if (luaL_loadbuffer(state_, snippet.data(), snippet.size(), in Compile()
/external/libtextclassifier/utils/intents/
Dintent-generator.cc671 status = luaL_loadbuffer(state_, generator_snippet.data(), in RunIntentGenerator()