Home
last modified time | relevance | path

Searched refs:FunctionType (Results 1 – 5 of 5) sorted by relevance

/vim-8.2.3635/src/
H A Dif_py_both.h2944 static PyTypeObject FunctionType; variable
6258 else if (PyType_IsSubtype(obj->ob_type, &FunctionType)) in _ConvertFromPyObject()
6643 CLEAR_FIELD(FunctionType); in init_structs()
6644 FunctionType.tp_name = "vim.function"; in init_structs()
6645 FunctionType.tp_basicsize = sizeof(FunctionObject); in init_structs()
6647 FunctionType.tp_call = (ternaryfunc)FunctionCall; in init_structs()
6650 FunctionType.tp_methods = FunctionMethods; in init_structs()
6651 FunctionType.tp_repr = (reprfunc)FunctionRepr; in init_structs()
6652 FunctionType.tp_new = (newfunc)FunctionConstructor; in init_structs()
6709 PYTYPE_READY(FunctionType); in init_types()
[all …]
/vim-8.2.3635/runtime/autoload/
H A Dpython3complete.vim158 if type(func_obj) in [types.FunctionType, types.LambdaType,types.MethodType]:
H A Dpythoncomplete.vim175 if type(func_obj) in [types.FunctionType, types.LambdaType]:
/vim-8.2.3635/runtime/syntax/
H A Dpostscr.vim560 …syn keyword postscrConstant contained FunctionType Domain Range Order BitsPerSample Encode Size …
/vim-8.2.3635/runtime/doc/
H A Dversion7.txt15805 Solution: Add the iterators. Also fix name of FunctionType. Add tests for