Home
last modified time | relevance | path

Searched refs:WindowType (Results 1 – 3 of 3) sorted by relevance

/vim-8.2.3635/src/
H A Dif_py_both.h3865 static PyTypeObject WindowType; variable
5600 if (valObject->ob_type != &WindowType) in CurrentSetattr()
6507 CLEAR_FIELD(WindowType); in init_structs()
6508 WindowType.tp_name = "vim.window"; in init_structs()
6511 WindowType.tp_repr = (reprfunc)WindowRepr; in init_structs()
6513 WindowType.tp_doc = "vim Window object"; in init_structs()
6514 WindowType.tp_methods = WindowMethods; in init_structs()
6516 WindowType.tp_clear = (inquiry)WindowClear; in init_structs()
6522 WindowType.tp_free = call_PyObject_Free; in init_structs()
6701 PYTYPE_READY(WindowType); in init_types()
[all …]
H A Dif_python.c1199 #define WindowType_Check(obj) ((obj)->ob_type == &WindowType)
H A Dif_python3.c1343 #define WindowType_Check(obj) ((obj)->ob_base.ob_type == &WindowType)