Home
last modified time | relevance | path

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

/vim-8.2.3635/src/
H A Dif_lua.c486 tname, luaL_typename(L, narg)); in luaL_typeerror()
498 lua_pushlightuserdata(L, (void *) tname); in luaV_newmetatable()
512 luaV_getfield(L, tname); // get metatable in luaV_toudata()
540 void *p = luaV_toudata(L, ud, tname); in luaV_checkudata()
818 luaV_new##tname(lua_State *L, typ *obj) \
828 #define luaV_pushtype(typ,tname,luatyp) \ argument
840 o = luaV_new##tname(L, obj); \
848 #define luaV_type_tostring(tname,luatname) \ argument
850 luaV_##tname##_tostring(lua_State *L) \
2679 #define luaV_freetype(typ,tname) \ argument
[all …]
H A Dhighlight.c1292 char_u *tname; in highlight_set_startstop_termcode() local
1310 tname = vim_strnsave(arg + off, len); in highlight_set_startstop_termcode()
1311 if (tname == NULL) // out of memory in highlight_set_startstop_termcode()
1314 p = get_term_code(tname); in highlight_set_startstop_termcode()
1315 vim_free(tname); in highlight_set_startstop_termcode()
H A Doption.c4421 get_term_code(char_u *tname) in get_term_code() argument
4426 if (tname[0] != 't' || tname[1] != '_' || in get_term_code()
4427 tname[2] == NUL || tname[3] == NUL) in get_term_code()
4429 if ((opt_idx = findoption(tname)) >= 0) in get_term_code()
4436 return find_termcode(tname + 2); in get_term_code()
/vim-8.2.3635/src/proto/
H A Doption.pro40 char_u *get_term_code(char_u *tname);