Lines Matching refs:gaobject
13 } gaobject; typedef
18 gaobject *alias = (gaobject *)self; in ga_dealloc()
33 gaobject *alias = (gaobject *)self; in ga_traverse()
120 gaobject *alias = (gaobject *)self; in ga_repr()
299 gaobject *alias = (gaobject *)self; in ga_getitem()
369 gaobject *alias = (gaobject *)self; in ga_hash()
385 gaobject *alias = (gaobject *)self; in ga_call()
414 gaobject *alias = (gaobject *)self; in ga_getattro()
451 gaobject *aa = (gaobject *)a; in ga_richcompare()
452 gaobject *bb = (gaobject *)b; in ga_richcompare()
466 gaobject *alias = (gaobject *)self; in ga_mro_entries()
489 gaobject *alias = (gaobject *)self; in ga_reduce()
497 gaobject *alias = (gaobject *)self; in ga_dir()
542 {"__origin__", T_OBJECT, offsetof(gaobject, origin), READONLY},
543 {"__args__", T_OBJECT, offsetof(gaobject, args), READONLY},
550 gaobject *alias = (gaobject *)self; in ga_parameters()
590 .tp_basicsize = sizeof(gaobject),
600 .tp_weaklistoffset = offsetof(gaobject, weakreflist),
622 gaobject *alias = PyObject_GC_New(gaobject, &Py_GenericAliasType); in Py_GenericAlias()