Lines Matching refs:gaobject
14 } gaobject; typedef
19 gaobject *alias = (gaobject *)self; in ga_dealloc()
34 gaobject *alias = (gaobject *)self; in ga_traverse()
121 gaobject *alias = (gaobject *)self; in ga_repr()
355 gaobject *alias = (gaobject *)self; in ga_getitem()
382 gaobject *alias = (gaobject *)self; in ga_hash()
398 gaobject *alias = (gaobject *)self; in ga_call()
429 gaobject *alias = (gaobject *)self; in ga_getattro()
465 gaobject *aa = (gaobject *)a; in ga_richcompare()
466 gaobject *bb = (gaobject *)b; in ga_richcompare()
480 gaobject *alias = (gaobject *)self; in ga_mro_entries()
503 gaobject *alias = (gaobject *)self; in ga_reduce()
511 gaobject *alias = (gaobject *)self; in ga_dir()
556 {"__origin__", T_OBJECT, offsetof(gaobject, origin), READONLY},
557 {"__args__", T_OBJECT, offsetof(gaobject, args), READONLY},
564 gaobject *alias = (gaobject *)self; in ga_parameters()
584 setup_ga(gaobject *alias, PyObject *origin, PyObject *args) { in setup_ga()
614 gaobject *self = (gaobject *)type->tp_alloc(type, 0); in ga_new()
639 .tp_basicsize = sizeof(gaobject),
650 .tp_weaklistoffset = offsetof(gaobject, weakreflist),
662 gaobject *alias = (gaobject*) PyType_GenericAlloc( in Py_GenericAlias()