Home | History | Annotate | Download | only in cm

Lines Matching defs:itself

36 CmpDesc_New(ComponentDescription *itself)
40 PyMac_BuildOSType, itself->componentType,
41 PyMac_BuildOSType, itself->componentSubType,
42 PyMac_BuildOSType, itself->componentManufacturer,
43 itself->componentFlags, itself->componentFlagsMask);
70 PyObject *CmpInstObj_New(ComponentInstance itself)
73 if (itself == NULL) {
79 it->ob_itself = itself;
271 ComponentInstance itself;
272 char *kw[] = {"itself", 0};
274 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, CmpInstObj_Convert, &itself)) return NULL;
276 ((ComponentInstanceObject *)_self)->ob_itself = itself;
341 PyObject *CmpObj_New(Component itself)
344 if (itself == NULL) {
351 it->ob_itself = itself;
709 Component itself;
710 char *kw[] = {"itself", 0};
712 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, CmpObj_Convert, &itself)) return NULL;
714 ((ComponentObject *)_self)->ob_itself = itself;