Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/danomatika/ofxLua
/ functions
Functions
2,184 in github.com/danomatika/ofxLua
⨍
Functions
2,184
◇
Types & classes
127
↓ 1 callers
Function
removelastinstruction
** Remove the last instruction created, correcting line information ** accordingly. */
libs/lua/lcode.c:372
↓ 1 callers
Function
removevars
** Close the scope for all variables up to level 'tolevel'. ** (debug info.) */
libs/lua/lparser.c:328
↓ 1 callers
Function
repeatstat
libs/lua/lparser.c:1487
↓ 1 callers
Function
restartcollection
** mark root set and reset all gray lists, to start a new collection */
libs/lua/lgc.c:403
↓ 1 callers
Function
restassign
** Parse and compile a multiple assignment. The first "variable" ** (a 'suffixedexp') was already read by the caller. ** ** assignment -> suffixedexp
libs/lua/lparser.c:1375
↓ 1 callers
Function
retstat
libs/lua/lparser.c:1813
↓ 1 callers
Function
rkname
** Find a "name" for a 'C' value in an RK instruction. */
libs/lua/ldebug.c:446
↓ 1 callers
Function
rotl1
for offsets larger than 32, rotate right by 64 - offset */
libs/lua/lmathlib.c:427
↓ 1 callers
Function
runafewfinalizers
** Call a few finalizers */
libs/lua/lgc.c:936
↓ 1 callers
Method
scriptWindowResized
--------------------------------------------------------------------
src/ofxLua.cpp:286
↓ 1 callers
Function
searchupvalue
** Search the upvalues of the function 'fs' for one ** with the given 'name'. */
libs/lua/lparser.c:342
↓ 1 callers
Function
searchvar
** Look for an active local variable with the name 'n' in the ** function 'fs'. If found, initialize 'var' with it and return ** its expression kind;
libs/lua/lparser.c:390
↓ 1 callers
Method
setNil
src/ofxLua.cpp:898
↓ 1 callers
Method
setNumberVector
src/ofxLua.cpp:882
↓ 1 callers
Function
setboolfield
libs/lua/loslib.c:219
↓ 1 callers
Function
setprogdir
** Replace in the path (on the top of the stack) any occurrence ** of LUA_EXEC_DIR with the executable's path. */
libs/lua/loadlib.c:177
↓ 1 callers
Function
setrandfunc
** Register the random functions and initialize their state. */
libs/lua/lmathlib.c:642
↓ 1 callers
Function
settraps
** Set 'trap' for all active Lua frames. ** This function can be called during a signal, under "reasonable" ** assumptions. A new 'ci' is completely l
libs/lua/ldebug.c:114
↓ 1 callers
Function
simpleexp
libs/lua/lparser.c:1140
↓ 1 callers
Function
skipBOM
** Skip an optional BOM at the start of a stream. If there is an ** incomplete BOM (the first character is correct but the rest is ** not), returns th
libs/lua/lauxlib.c:749
↓ 1 callers
Function
solvegoto
** Solves the goto at index 'g' to given 'label' and removes it ** from the list of pending gotos. ** If it jumps into the scope of some variable, rai
libs/lua/lparser.c:527
↓ 1 callers
Function
solvegotos
** Solves forward jumps. Check whether new label 'lb' matches any ** pending gotos in current block and solves them. Return true ** if any of the goto
libs/lua/lparser.c:585
↓ 1 callers
Function
stackinuse
** Compute how much of the stack is being used, by computing the ** maximum top of all call frames in the stack and the current top. */
libs/lua/ldo.c:276
↓ 1 callers
Function
stepgenfull
** Does a major collection after last collection was a "bad collection". ** ** When the program is building a big structure, it allocates lots of ** m
libs/lua/lgc.c:1400
↓ 1 callers
Function
subexpr
** subexpr -> (simpleexp | unop subexpr) { binop subexpr } ** where 'binop' is any binary operator with a priority higher than 'limit' */
libs/lua/lparser.c:1260
↓ 1 callers
Function
test_eof
libs/lua/liolib.c:511
↓ 1 callers
Function
times5
return i * 5 */
libs/lua/lmathlib.c:410
↓ 1 callers
Function
times9
return i * 9 */
libs/lua/lmathlib.c:415
↓ 1 callers
Function
traverseCclosure
libs/lua/lgc.c:593
↓ 1 callers
Function
traverseLclosure
** Traverse a Lua closure, marking its prototype and its upvalues. ** (Both can be NULL while closure is being created.) */
libs/lua/lgc.c:604
↓ 1 callers
Function
traverseproto
** Traverse a prototype. (While a prototype is being build, its ** arrays can be larger than needed; the extra slots are filled with ** NULL, so the u
libs/lua/lgc.c:578
↓ 1 callers
Function
traversestrongtable
libs/lua/lgc.c:523
↓ 1 callers
Function
traversetable
libs/lua/lgc.c:542
↓ 1 callers
Function
traversethread
** Traverse a thread, marking the elements in the stack up to its top ** and cleaning the rest of the stack in the final traversal. That ** ensures th
libs/lua/lgc.c:627
↓ 1 callers
Function
traverseudata
libs/lua/lgc.c:563
↓ 1 callers
Function
traverseweakvalue
** Traverse a table with weak values and link it to proper list. During ** propagate phase, keep it in 'grayagain' list, to be revisited in the ** ato
libs/lua/lgc.c:446
↓ 1 callers
Function
trymt
libs/lua/lstrlib.c:277
↓ 1 callers
Function
txtToken
libs/lua/llex.c:99
↓ 1 callers
Function
udata2finalize
** Get the next udata to be finalized from the 'tobefnz' list, and ** link it back into the 'allgc' list. */
libs/lua/lgc.c:884
↓ 1 callers
Function
undefgoto
** generates an error for an undefined 'goto'. */
libs/lua/lparser.c:658
↓ 1 callers
Function
unmakemask
** Convert a bit mask (for 'gethook') into a string mask */
libs/lua/ldblib.c:355
↓ 1 callers
Function
unopr2op
** Convert a UnOpr to an OpCode (ORDER OPR - ORDER OP) */
libs/lua/lcode.c:1368
↓ 1 callers
Function
unroll
** Executes "full continuation" (everything in the stack) of a ** previously interrupted coroutine until the stack is empty (or another ** interruptio
libs/lua/ldo.c:736
↓ 1 callers
Function
utf8esc
libs/lua/llex.c:361
↓ 1 callers
Function
validop
** Return false if folding can raise an error. ** Bitwise operations need operands convertible to integers; division ** operations cannot have 0 as di
libs/lua/lcode.c:1314
↓ 1 callers
Function
warnfcont
** Writes the message and handle 'tocont', finishing the message ** if needed and setting the next warn function. */
libs/lua/lauxlib.c:1074
↓ 1 callers
Function
whilestat
libs/lua/lparser.c:1468
↓ 1 callers
Method
writeBoolVector
src/ofxLuaFileWriter.cpp:122
↓ 1 callers
Method
writeComment
src/ofxLuaFileWriter.cpp:40
↓ 1 callers
Method
writeLine
src/ofxLuaFileWriter.cpp:62
↓ 1 callers
Method
writeNumberVector
src/ofxLuaFileWriter.cpp:130
↓ 1 callers
Method
writeStringVector
src/ofxLuaFileWriter.cpp:138
↓ 1 callers
Method
writeTable
------------------------------------------------------------------------------
src/ofxLua.cpp:947
↓ 1 callers
Function
youngcollection
** Does a young collection. First, mark 'OLD1' objects. Then does the ** atomic step. Then, sweep all lists and advance pointers. Finally, ** finish t
libs/lua/lgc.c:1249
Function
SWIG_AddCast
src/bindings/glmBindings.cpp:311
Function
SWIG_AddCast
src/bindings/ofBindings.h:319
Function
SWIG_CheckState
src/bindings/glmBindings.cpp:314
Function
SWIG_CheckState
src/bindings/ofBindings.h:322
Function
SWIG_Lua_ConvertPacked
converts a packed userdata. user for member fn pointers only */
src/bindings/glmBindings.cpp:2568
Function
SWIG_Lua_ConvertPacked
converts a packed userdata. user for member fn pointers only */
src/bindings/ofBindings.h:2560
Function
SWIG_Lua_ConvertPtr
takes a object from the lua stack & converts it into an object of the correct type (if possible) */
src/bindings/glmBindings.cpp:2494
Function
SWIG_Lua_ConvertPtr
takes a object from the lua stack & converts it into an object of the correct type (if possible) */
src/bindings/ofBindings.h:2486
Function
SWIG_Lua_MustGetPtr
src/bindings/glmBindings.cpp:2545
Function
SWIG_Lua_MustGetPtr
src/bindings/ofBindings.h:2537
Function
SWIG_Lua_NewPackedObj
pushes a packed userdata. user for member fn pointers only */
src/bindings/glmBindings.cpp:2556
Function
SWIG_Lua_NewPackedObj
pushes a packed userdata. user for member fn pointers only */
src/bindings/ofBindings.h:2548
Function
SWIG_Lua_NewPointerObj
pushes a new object into the lua stack */
src/bindings/glmBindings.cpp:2476
Function
SWIG_Lua_NewPointerObj
pushes a new object into the lua stack */
src/bindings/ofBindings.h:2468
Function
SWIG_Lua_SetModule
src/bindings/glmBindings.cpp:1097
Function
SWIG_Lua_SetModule
src/bindings/ofBindings.h:1089
Function
SWIG_Lua_class_destruct
the class.destruct method called by the interpreter */
src/bindings/glmBindings.cpp:1753
Function
SWIG_Lua_class_destruct
the class.destruct method called by the interpreter */
src/bindings/ofBindings.h:1745
Function
SWIG_Lua_class_disown
to manually disown some userdata */
src/bindings/glmBindings.cpp:1787
Function
SWIG_Lua_class_disown
to manually disown some userdata */
src/bindings/ofBindings.h:1779
Function
SWIG_Lua_class_equal
lua callable function to compare userdata's value the issue is that two userdata may point to the same thing but to lua, they are different objects */
src/bindings/glmBindings.cpp:1802
Function
SWIG_Lua_class_equal
lua callable function to compare userdata's value the issue is that two userdata may point to the same thing but to lua, they are different objects */
src/bindings/ofBindings.h:1794
Function
SWIG_Lua_class_get
the class.get method, performs the lookup of class attributes */
src/bindings/glmBindings.cpp:1639
Function
SWIG_Lua_class_get
the class.get method, performs the lookup of class attributes */
src/bindings/ofBindings.h:1631
Function
SWIG_Lua_class_set
This is the actual method exported to Lua. It calls SWIG_Lua_class_do_set and correctly * handles return values. */
src/bindings/glmBindings.cpp:1728
Function
SWIG_Lua_class_set
This is the actual method exported to Lua. It calls SWIG_Lua_class_do_set and correctly * handles return values. */
src/bindings/ofBindings.h:1720
Function
SWIG_Lua_class_tostring
the class.__tostring method called by the interpreter and print */
src/bindings/glmBindings.cpp:1774
Function
SWIG_Lua_class_tostring
the class.__tostring method called by the interpreter and print */
src/bindings/ofBindings.h:1766
Function
SWIG_Lua_dostring
Executes a C string in Lua which is a really simple way of calling lua from C Unfortunately lua keeps changing its APIs, so we need a conditional comp
src/bindings/ofBindings.h:2657
Function
SWIG_Lua_elua_class_register_instance
src/bindings/ofBindings.h:2416
Function
SWIG_Lua_elua_emulate_register
This function emulates eLua rotables behaviour. It loads a rotable definition into the usual lua table. */
src/bindings/ofBindings.h:1121
Function
SWIG_Lua_elua_emulate_register_clear
src/bindings/ofBindings.h:1205
Function
SWIG_Lua_emulate_elua_getmetatable
src/bindings/glmBindings.cpp:1221
Function
SWIG_Lua_emulate_elua_getmetatable
src/bindings/ofBindings.h:1213
Function
SWIG_Lua_emulate_elua_swap_getmetatable
src/bindings/glmBindings.cpp:1247
Function
SWIG_Lua_emulate_elua_swap_getmetatable
src/bindings/ofBindings.h:1239
Function
SWIG_Lua_init_base_class
Set up the base classes pointers. Each class structure has a list of pointers to the base class structures. This function fills them. It cannot be don
src/bindings/ofBindings.h:1898
Function
SWIG_Lua_namespace_get
src/bindings/glmBindings.cpp:1268
Function
SWIG_Lua_namespace_get
src/bindings/ofBindings.h:1260
Function
SWIG_Lua_namespace_set
src/bindings/glmBindings.cpp:1305
Function
SWIG_Lua_namespace_set
src/bindings/ofBindings.h:1297
Function
SWIG_Lua_pusherrstring
Push the string STR on the Lua stack, like lua_pushstring, but prefixed with the location of the innermost Lua call-point (as formatted by luaL_
src/bindings/ofBindings.h:913
Function
SWIG_Lua_resolve_metamethod
The proxy function for metamethod. All parameters are passed as cclosure. Searches for actual method * and calls it */
src/bindings/glmBindings.cpp:2128
Function
SWIG_Lua_resolve_metamethod
The proxy function for metamethod. All parameters are passed as cclosure. Searches for actual method * and calls it */
src/bindings/ofBindings.h:2120
Function
SWIG_Lua_set_immutable
this function is called when trying to set an immutable. default action is to print an error. This can removed with a compile flag SWIGLUA_IGNORE_SET_
src/bindings/glmBindings.cpp:1112
Function
SWIG_Lua_set_immutable
this function is called when trying to set an immutable. default action is to print an error. This can removed with a compile flag SWIGLUA_IGNORE_SET_
src/bindings/ofBindings.h:1104
← previous
next →
1,501–1,600 of 2,184, ranked by callers