Code
Hub
Workspaces
Following
Trending
Connect
MCP
copy
Create free account
hub
/
github.com/Tencent/xLua
/ functions
Functions
3,108 in github.com/Tencent/xLua
⨍
Functions
3,108
◇
Types & classes
364
↓ 2 callers
Function
load_aux
WebGLPlugins/lbaselib.c:270
↓ 2 callers
Function
loadfunc
** Try to find a load function for module 'modname' at file 'filename'. ** First, change '.' to '_' in 'modname'; then, if 'modname' has ** the form X
WebGLPlugins/loadlib.c:516
↓ 2 callers
Function
locateNode
(vnode)
docs/public/js/vue.js:7076
↓ 2 callers
Function
locateNode
(vnode)
docs/source/themes/catlib/source/js/vue.js:7076
↓ 2 callers
Function
luaC_checkfinalizer
** if object 'o' has a finalizer, remove it from 'allgc' list (must ** search the list to find it) and link it in 'finobj' list. */
WebGLPlugins/lgc.c:901
↓ 2 callers
Function
luaC_upvdeccount
WebGLPlugins/lgc.c:677
↓ 2 callers
Function
luaE_freeCI
** free all CallInfo structures not in use by a thread */
WebGLPlugins/lstate.c:122
↓ 2 callers
Function
luaG_addinfo
add src:line information to 'msg' */
WebGLPlugins/ldebug.c:628
↓ 2 callers
Function
luaG_errormsg
WebGLPlugins/ldebug.c:640
↓ 2 callers
Function
luaG_opinterror
WebGLPlugins/ldebug.c:597
↓ 2 callers
Function
luaG_ordererror
WebGLPlugins/ldebug.c:617
↓ 2 callers
Function
luaH_getn
** Try to find a boundary in table 't'. A 'boundary' is an integer index ** such that t[i] is non-nil and t[i+1] is nil (and 0 if t[1] is nil). */
WebGLPlugins/ltable.c:641
↓ 2 callers
Function
luaK_checkstack
** Check register-stack level, keeping track of its maximum size ** in field 'maxstacksize' */
WebGLPlugins/lcode.c:361
↓ 2 callers
Function
luaK_exp2anyregup
** Ensures final expression result is either in a register or in an ** upvalue. */
WebGLPlugins/lcode.c:734
↓ 2 callers
Function
luaK_goiffalse
** Emit code to go through if 'e' is false, jump otherwise. */
WebGLPlugins/lcode.c:884
↓ 2 callers
Function
luaK_nil
** Create a OP_LOADNIL instruction, but try to optimize: if the previous ** instruction is also OP_LOADNIL and ranges are compatible, adjust ** range
WebGLPlugins/lcode.c:64
↓ 2 callers
Function
luaK_numberK
** Add a float to list of constants and return its index. */
WebGLPlugins/lcode.c:481
↓ 2 callers
Function
luaK_ret
** Code a 'return' instruction */
WebGLPlugins/lcode.c:149
↓ 2 callers
Function
luaK_setoneret
** Fix an expression to return one result. ** If expression is not a multi-ret expression (function call or ** vararg), it already returns one result,
WebGLPlugins/lcode.c:539
↓ 2 callers
Function
luaL_callmeta
WebGLPlugins/lauxlib.c:788
↓ 2 callers
Function
luaL_execresult
WebGLPlugins/lauxlib.c:274
↓ 2 callers
Function
luaL_findtable
WebGLPlugins/lauxlib.c:855
↓ 2 callers
Function
luaL_newmetatable
WebGLPlugins/lauxlib.c:299
↓ 2 callers
Function
luaL_openlibs
WebGLPlugins/linit.c:60
↓ 2 callers
Function
luaL_pushmodule
** Find or create a module table with a given name. The function ** first looks at the LOADED table and, if that fails, try a ** global variable with
WebGLPlugins/lauxlib.c:897
↓ 2 callers
Function
luaL_testudata
WebGLPlugins/lauxlib.c:318
↓ 2 callers
Function
luaL_traceback
WebGLPlugins/lauxlib.c:125
↓ 2 callers
Function
luaM_toobig
WebGLPlugins/lmem.c:68
↓ 2 callers
Function
luaO_arith
WebGLPlugins/lobject.c:123
↓ 2 callers
Function
luaO_ceillog2
** Computes ceil(log2(x)) */
WebGLPlugins/lobject.c:65
↓ 2 callers
Function
luaO_chunkid
WebGLPlugins/lobject.c:486
↓ 2 callers
Function
luaO_fb2int
converts back */
WebGLPlugins/lobject.c:57
↓ 2 callers
Function
luaO_int2fb
** converts an integer to a "floating point byte", represented as ** (eeeeexxx), where the real value is (1xxx) * 2^(eeeee - 1) if ** eeeee != 0 and (
WebGLPlugins/lobject.c:41
↓ 2 callers
Function
luaO_tostring
** Convert a number object to a string */
WebGLPlugins/lobject.c:371
↓ 2 callers
Function
luaO_utf8esc
WebGLPlugins/lobject.c:346
↓ 2 callers
Function
luaT_callbinTM
WebGLPlugins/ltm.c:124
↓ 2 callers
Function
luaU_dump
** dump Lua function as precompiled chunk */
WebGLPlugins/ldump.c:202
↓ 2 callers
Function
luaV_div
** Integer division; return 'm // n', that is, floor(m/n). ** C division truncates its result (rounds towards zero). ** 'floor(q) == trunc(q)' when 'q
WebGLPlugins/lvm.c:552
↓ 2 callers
Function
luaV_equalobj
** Main operation for equality of Lua values; return 't1 == t2'. ** L == NULL means raw equality (no metamethods) */
WebGLPlugins/lvm.c:407
↓ 2 callers
Function
luaV_finishset
** Finish a table assignment 't[key] = val'. ** If 'slot' is NULL, 't' is not a table. Otherwise, 'slot' points ** to the entry 't[key]', or to 'luaO
WebGLPlugins/lvm.c:203
↓ 2 callers
Function
luaV_lessequal
** Main operation less than or equal to; return 'l <= r'. If it needs ** a metamethod and there is no '__le', try '__lt', based on ** l <= r iff !(r <
WebGLPlugins/lvm.c:384
↓ 2 callers
Function
luaV_lessthan
** Main operation less than; return 'l < r'. */
WebGLPlugins/lvm.c:364
↓ 2 callers
Function
luaV_mod
** Integer modulus; return 'm % n'. (Assume that C '%' with ** negative operands follows C99 behavior. See previous comment ** about luaV_div.) */
WebGLPlugins/lvm.c:572
↓ 2 callers
Function
luaV_objlen
** Main operation 'ra' = #rb'. */
WebGLPlugins/lvm.c:517
↓ 2 callers
Function
lua_copy
WebGLPlugins/lapi.c:222
↓ 2 callers
Method
lua_error
(IntPtr L)
Assets/XLua/Src/LuaDLL.cs:412
↓ 2 callers
Function
lua_gc
WebGLPlugins/lapi.c:1039
↓ 2 callers
Function
lua_getlocal
WebGLPlugins/ldebug.c:171
↓ 2 callers
Function
lua_isint64_or_uint64
WebGLPlugins/i64lib.c:83
↓ 2 callers
Method
lua_isinteger
(IntPtr L, int index)
Assets/XLua/Src/LuaDLL.cs:207
↓ 2 callers
Function
lua_number2strx
WebGLPlugins/lstrlib.c:873
↓ 2 callers
Method
lua_pushint64
(IntPtr L, long n)
Assets/XLua/Src/LuaDLL.cs:464
↓ 2 callers
Method
lua_pushuint64
(IntPtr L, ulong n)
Assets/XLua/Src/LuaDLL.cs:467
↓ 2 callers
Function
lua_rawgetp
WebGLPlugins/perflib.c:66
↓ 2 callers
Function
lua_rawsetp
WebGLPlugins/perflib.c:57
↓ 2 callers
Function
lua_rawsetp
WebGLPlugins/lapi.c:829
↓ 2 callers
Function
lua_status
WebGLPlugins/lapi.c:1030
↓ 2 callers
Function
lua_stringtonumber
WebGLPlugins/lapi.c:337
↓ 2 callers
Function
lua_tonumberx
WebGLPlugins/lapi.c:345
↓ 2 callers
Function
lua_typename
WebGLPlugins/lapi.c:257
↓ 2 callers
Method
lua_unref
(IntPtr L, int reference)
Assets/XLua/Src/LuaDLL.cs:199
↓ 2 callers
Function
makeFunction
(code, errors)
docs/public/js/vue.js:9250
↓ 2 callers
Function
makeFunction
(code, errors)
docs/source/themes/catlib/source/js/vue.js:9250
↓ 2 callers
Function
markStatic
( tree, key, isOnce )
docs/public/js/vue.js:3795
↓ 2 callers
Function
markStatic
( tree, key, isOnce )
docs/source/themes/catlib/source/js/vue.js:3795
↓ 2 callers
Function
markStaticNode
(node, key, isOnce)
docs/public/js/vue.js:3811
↓ 2 callers
Function
markStaticNode
(node, key, isOnce)
docs/source/themes/catlib/source/js/vue.js:3811
↓ 2 callers
Function
markStaticRoots
(node, isInFor)
docs/public/js/vue.js:8562
↓ 2 callers
Function
markStaticRoots
(node, isInFor)
docs/source/themes/catlib/source/js/vue.js:8562
↓ 2 callers
Function
mark_root_table
WebGLPlugins/perflib.c:270
↓ 2 callers
Function
mark_table
WebGLPlugins/perflib.c:140
↓ 2 callers
Function
markbeingfnz
** mark all objects in list of being-finalized */
WebGLPlugins/lgc.c:299
↓ 2 callers
Function
markmt
** mark metamethods for basic types */
WebGLPlugins/lgc.c:289
↓ 2 callers
Function
match_class
WebGLPlugins/lstrlib.c:282
↓ 2 callers
Function
mergeClassData
(child, parent)
docs/public/js/vue.js:4443
↓ 2 callers
Function
mergeClassData
(child, parent)
docs/source/themes/catlib/source/js/vue.js:4443
↓ 2 callers
Function
mergeData
* Helper that recursively merges two data objects together.
docs/public/js/vue.js:1065
↓ 2 callers
Function
mergeData
* Helper that recursively merges two data objects together.
docs/source/themes/catlib/source/js/vue.js:1065
↓ 2 callers
Function
mergeField
(key)
docs/public/js/vue.js:1322
↓ 2 callers
Function
mergeField
(key)
docs/source/themes/catlib/source/js/vue.js:1322
↓ 2 callers
Function
mergeProps
(to, from)
docs/public/js/vue.js:3302
↓ 2 callers
Function
mergeProps
(to, from)
docs/source/themes/catlib/source/js/vue.js:3302
↓ 2 callers
Function
need_value
** check whether list has any jump that do not produce a value ** or produce an inverted value */
WebGLPlugins/lcode.c:659
↓ 2 callers
Function
needsNormalization
(el)
docs/public/js/vue.js:9075
↓ 2 callers
Function
needsNormalization
(el)
docs/source/themes/catlib/source/js/vue.js:9075
↓ 2 callers
Function
negatecondition
** Negate condition 'e' (where 'e' is a comparison). */
WebGLPlugins/lcode.c:825
↓ 2 callers
Function
newupvalue
WebGLPlugins/lparser.c:228
↓ 2 callers
Function
nextFrame
(fn)
docs/public/js/vue.js:6498
↓ 2 callers
Function
nextFrame
(fn)
docs/source/themes/catlib/source/js/vue.js:6498
↓ 2 callers
Function
nextc
** Add current char to buffer (if not out of space) and read next one */
WebGLPlugins/liolib.c:404
↓ 2 callers
Function
normalizeDirectives$1
( dirs, vm )
docs/public/js/vue.js:5405
↓ 2 callers
Function
normalizeDirectives$1
( dirs, vm )
docs/source/themes/catlib/source/js/vue.js:5405
↓ 2 callers
Function
normalizeStyleBinding
(bindingStyle)
docs/public/js/vue.js:6255
↓ 2 callers
Function
normalizeStyleBinding
(bindingStyle)
docs/source/themes/catlib/source/js/vue.js:6255
↓ 2 callers
Function
numarith
WebGLPlugins/lobject.c:103
↓ 2 callers
Function
open_func
WebGLPlugins/lparser.c:529
↓ 2 callers
Function
opencheck
WebGLPlugins/liolib.c:243
↓ 2 callers
Function
p
(a,b)
docs/public/js/jquery.js:2
↓ 2 callers
Function
p
(a,b)
docs/source/themes/catlib/source/js/jquery.js:2
↓ 2 callers
Function
pairsmeta
WebGLPlugins/lbaselib.c:209
← previous
next →
901–1,000 of 3,108, ranked by callers