HomeSort by relevance Sort by last modified time
    Searched refs:metatable (Results 1 - 25 of 37) sorted by null

1 2

  /device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
ltm.c 67 mt = hvalue(o)->metatable;
70 mt = uvalue(o)->metatable;
lvm.c 118 (tm = fasttm(L, h->metatable, TM_INDEX)) == NULL) { /* or no TM? */
147 ((tm = fasttm(L, h->metatable, TM_NEWINDEX)) == NULL &&
274 tm = get_equalTM(L, uvalue(t1)->metatable, uvalue(t2)->metatable, TM_EQ);
280 tm = get_equalTM(L, hvalue(t1)->metatable, hvalue(t2)->metatable, TM_EQ);
340 tm = fasttm(L, h->metatable, TM_LEN);
lstring.c 181 u->uv.metatable = NULL;
lobject.h 435 struct Table *metatable; member in struct:Udata::__anon5182
564 struct Table *metatable; member in struct:Table
  /external/lua/src/
ltm.c 74 mt = hvalue(o)->metatable;
77 mt = uvalue(o)->metatable;
88 ** with metatable, use their '__name' metafield, if present.
92 if ((ttistable(o) && (mt = hvalue(o)->metatable) != NULL) ||
93 (ttisfulluserdata(o) && (mt = uvalue(o)->metatable) != NULL)) {
lvm.c 174 tm = fasttm(L, hvalue(t)->metatable, TM_INDEX); /* table's metamethod */
211 tm = fasttm(L, h->metatable, TM_NEWINDEX); /* get metamethod */
430 tm = fasttm(L, uvalue(t1)->metatable, TM_EQ);
432 tm = fasttm(L, uvalue(t2)->metatable, TM_EQ);
438 tm = fasttm(L, hvalue(t1)->metatable, TM_EQ);
440 tm = fasttm(L, hvalue(t2)->metatable, TM_EQ);
522 tm = fasttm(L, h->metatable, TM_LEN);
    [all...]
lobject.h 349 struct Table *metatable; member in struct:Udata
505 struct Table *metatable; member in struct:Table
  /external/flatbuffers/samples/lua/MyGame/Sample/
Vec3.lua 8 local Vec3_mt = {} -- the class metatable
Weapon.lua 8 local Weapon_mt = {} -- the class metatable
Monster.lua 8 local Monster_mt = {} -- the class metatable
  /external/flatbuffers/tests/MyGame/Example/
Ability.lua 8 local Ability_mt = {} -- the class metatable
Test.lua 8 local Test_mt = {} -- the class metatable
Referrable.lua 8 local Referrable_mt = {} -- the class metatable
TestSimpleTableWithEnum.lua 8 local TestSimpleTableWithEnum_mt = {} -- the class metatable
Stat.lua 8 local Stat_mt = {} -- the class metatable
Vec3.lua 8 local Vec3_mt = {} -- the class metatable
TypeAliases.lua 8 local TypeAliases_mt = {} -- the class metatable
  /external/flatbuffers/tests/MyGame/Example2/
Monster.lua 8 local Monster_mt = {} -- the class metatable
  /external/flatbuffers/tests/MyGame/
InParentNamespace.lua 8 local InParentNamespace_mt = {} -- the class metatable
  /external/flatbuffers/tests/namespace_test/NamespaceA/NamespaceB/
StructInNestedNS.lua 8 local StructInNestedNS_mt = {} -- the class metatable
TableInNestedNS.lua 8 local TableInNestedNS_mt = {} -- the class metatable
  /external/flatbuffers/tests/namespace_test/NamespaceA/
SecondTableInA.lua 8 local SecondTableInA_mt = {} -- the class metatable
TableInFirstNS.lua 8 local TableInFirstNS_mt = {} -- the class metatable
  /external/flatbuffers/tests/namespace_test/NamespaceC/
TableInC.lua 8 local TableInC_mt = {} -- the class metatable
  /external/flatbuffers/lua/flatbuffers/
binaryarray.lua 3 local mt = {} -- the module metatable

Completed in 3046 milliseconds

1 2