Home
last modified time | relevance | path

Searched refs:tname (Results 1 – 7 of 7) sorted by relevance

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Lib/lib2to3/
DGrammar.txt40 ('*' [tname] (',' tname ['=' test])* [',' '**' tname] | '**' tname)
42 tname: NAME [':' test]
43 tfpdef: tname | '(' tfplist ')'
/device/linaro/bootloader/edk2/AppPkg/Applications/Lua/src/
Dlauxlib.c171 static int typeerror (lua_State *L, int narg, const char *tname) { in typeerror() argument
173 tname, luaL_typename(L, narg)); in typeerror()
272 LUALIB_API int luaL_newmetatable (lua_State *L, const char *tname) { in luaL_newmetatable() argument
273 luaL_getmetatable(L, tname); /* try to get metatable */ in luaL_newmetatable()
279 lua_setfield(L, LUA_REGISTRYINDEX, tname); /* registry.name = metatable */ in luaL_newmetatable()
284 LUALIB_API void luaL_setmetatable (lua_State *L, const char *tname) { in luaL_setmetatable() argument
285 luaL_getmetatable(L, tname); in luaL_setmetatable()
290 LUALIB_API void *luaL_testudata (lua_State *L, int ud, const char *tname) { in luaL_testudata() argument
294 luaL_getmetatable(L, tname); /* get correct metatable */ in luaL_testudata()
305 LUALIB_API void *luaL_checkudata (lua_State *L, int ud, const char *tname) { in luaL_checkudata() argument
[all …]
/device/linaro/bootloader/edk2/StdLib/BsdSocketLib/
Dres_send.c258 char tname[MAXDNAME+1]; in res_nameinquery() local
261 n = dn_expand(buf, eom, cp, tname, sizeof tname); in res_nameinquery()
271 strcasecmp(tname, name) == 0) in res_nameinquery()
313 char tname[MAXDNAME+1]; in res_queriesmatch() local
316 n = dn_expand(buf1, eom1, cp, tname, sizeof tname); in res_queriesmatch()
324 if (!res_nameinquery(tname, ttype, tclass, buf2, eom2)) in res_queriesmatch()
Dgethostbydns.c209 const char *tname; in gethostanswer() local
212 tname = qname; in gethostanswer()
348 tname = bp; in gethostanswer()
365 if (strcasecmp(tname, bp) != 0) { in gethostanswer()
Dgetaddrinfo.c1435 char *cp, *tname, *cname; in _gethtent() local
1467 tname = cp; in _gethtent()
1470 if (strcasecmp(name, tname) == 0) in _gethtent()
/device/linaro/bootloader/edk2/StdLib/Include/Lua/
Dlauxlib.h54 LUALIB_API int (luaL_newmetatable) (lua_State *L, const char *tname);
55 LUALIB_API void (luaL_setmetatable) (lua_State *L, const char *tname);
56 LUALIB_API void *(luaL_testudata) (lua_State *L, int ud, const char *tname);
57 LUALIB_API void *(luaL_checkudata) (lua_State *L, int ud, const char *tname);
/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Tools/msi/
Dmsilib.py103 tname="CHAR(%d)" % size
105 tname="CHAR"
108 tname = "SHORT"
111 tname="LONG"
114 tname="OBJECT"
116 tname="unknown"
124 fields[index] = "`%s` %s%s" % (name, tname, flags)