Home
last modified time | relevance | path

Searched refs:subtype (Results 1 – 10 of 10) sorted by relevance

/vim-8.2.3635/runtime/syntax/
H A Dliquid.vim51 if !exists('s:subtype')
52 let s:subtype = exists('b:liquid_subtype') ? b:liquid_subtype : ''
63 if s:subtype == ''
66 let b:liquid_subtype = s:subtype
68 unlet s:subtype
H A Dvhdl.vim40 syn keyword vhdlStatement select severity signal shared subtype
116 syn match vhdlAttribute "\'subtype"
H A Ddatascript.vim31 syn keyword dsCompound union choice on enum bitmask subtype explicit
H A Dcsp.vim81 syn keyword cspReserved attribute embed module subtype
H A Dada.vim192 syntax keyword adaTypedef subtype type
H A Dprogress.vim255 …t sub-max[imum] sub-menu sub-menu-help sub-min[imum] sub-total subst[itute] substr[ing] subtype sum
/vim-8.2.3635/runtime/autoload/
H A Drubycomplete.vim552 subtype = path_elm[i]
553 subtype.downcase!
555 dprint "subtype: %s" % subtype
556 case subtype
H A Dada.vim48 …ect', 'access', 'exception', 'of', 'separate', 'aliased', 'exit', 'or', 'subtype', 'all', 'others'…
174 \ 'U': ["subspec", "subtype specifications"],
175 \ 'u': ["subtype", "subtypes"],
/vim-8.2.3635/src/
H A Dif_py_both.h1577 DictionaryNew(PyTypeObject *subtype, dict_T *dict) in DictionaryNew() argument
1581 self = (DictionaryObject *) subtype->tp_alloc(subtype, 0); in DictionaryNew()
1616 self = (DictionaryObject *) DictionaryNew(subtype, dict); in DictionaryConstructor()
2257 ListNew(PyTypeObject *subtype, list_T *list) in ListNew() argument
2264 self = (ListObject *) subtype->tp_alloc(subtype, 0); in ListNew()
2336 ListConstructor(PyTypeObject *subtype, PyObject *args, PyObject *kwargs) in ListConstructor() argument
2374 return ListNew(subtype, list); in ListConstructor()
2950 FunctionNew(PyTypeObject *subtype, char_u *name, int argc, typval_T *argv, in FunctionNew() argument
2955 self = (FunctionObject *)subtype->tp_alloc(subtype, 0); in FunctionNew()
3013 FunctionConstructor(PyTypeObject *subtype, PyObject *args, PyObject *kwargs) in FunctionConstructor() argument
[all …]
H A Dgui_photon.c694 (info->event->subtype == Ph_EV_RELEASE_REAL)) in gui_ph_handle_mouse()