OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:lua_CFunction
(Results
1 - 11
of
11
) sorted by null
/external/chromium_org/third_party/skia/third_party/lua/src/
lua.h
56
typedef int (*
lua_CFunction
) (lua_State *L);
135
LUA_API
lua_CFunction
(lua_atpanic) (lua_State *L,
lua_CFunction
panicf);
174
LUA_API
lua_CFunction
(lua_tocfunction) (lua_State *L, int idx);
214
LUA_API void (lua_pushcclosure) (lua_State *L,
lua_CFunction
fn, int n);
252
lua_CFunction
k);
258
int ctx,
lua_CFunction
k);
272
lua_CFunction
k);
loadlib.c
113
static
lua_CFunction
ll_sym (lua_State *L, void *lib, const char *sym);
141
static
lua_CFunction
ll_sym (lua_State *L, void *lib, const char *sym) {
142
lua_CFunction
f = (
lua_CFunction
)dlsym(lib, sym);
206
static
lua_CFunction
ll_sym (lua_State *L, void *lib, const char *sym) {
207
lua_CFunction
f = (
lua_CFunction
)GetProcAddress((HMODULE)lib, sym);
241
static
lua_CFunction
ll_sym (lua_State *L, void *lib, const char *sym) {
298
lua_CFunction
f = ll_sym(L, reg, sym);
676
static const
lua_CFunction
searchers[]
[
all
...]
lstate.h
83
lua_CFunction
k; /* continuation in case of yields */
142
lua_CFunction
panic; /* to be called in unprotected errors */
lauxlib.h
25
lua_CFunction
func;
99
lua_CFunction
openf, int glb);
190
lua_CFunction
closef; /* to close stream (NULL for closed streams) */
lapi.c
127
LUA_API
lua_CFunction
lua_atpanic (lua_State *L,
lua_CFunction
panicf) {
128
lua_CFunction
old;
418
LUA_API
lua_CFunction
lua_tocfunction (lua_State *L, int idx) {
555
LUA_API void lua_pushcclosure (lua_State *L,
lua_CFunction
fn, int n) {
890
lua_CFunction
k) {
929
int ctx,
lua_CFunction
k) {
lobject.h
392
lua_CFunction
f; /* light C functions */
518
lua_CFunction
f;
lbaselib.c
197
lua_CFunction
iter) {
ldo.c
296
lua_CFunction
f;
559
LUA_API int lua_yieldk (lua_State *L, int nresults, int ctx,
lua_CFunction
k) {
liolib.c
177
lua_CFunction
cf = p->closef;
lauxlib.c
887
lua_CFunction
openf, int glb) {
/external/chromium_org/third_party/skia/src/utils/
SkLua.cpp
152
const char key[],
lua_CFunction
value) {
[
all
...]
Completed in 57 milliseconds