Home
last modified time | relevance | path

Searched refs:p_itself (Results 1 – 24 of 24) sorted by relevance

/external/python/cpython2/Mac/Modules/cg/
D_CGmodule.c35 CGPoint_Convert(PyObject *v, CGPoint *p_itself) in CGPoint_Convert() argument
38 &p_itself->x, in CGPoint_Convert()
39 &p_itself->y) ) in CGPoint_Convert()
55 CGRect_Convert(PyObject *v, CGRect *p_itself) in CGRect_Convert() argument
58 &p_itself->origin.x, in CGRect_Convert()
59 &p_itself->origin.y, in CGRect_Convert()
60 &p_itself->size.width, in CGRect_Convert()
61 &p_itself->size.height) ) in CGRect_Convert()
79 CGAffineTransform_Convert(PyObject *v, CGAffineTransform *p_itself) in CGAffineTransform_Convert() argument
82 &p_itself->a, in CGAffineTransform_Convert()
[all …]
/external/python/cpython2/Mac/Modules/cm/
D_Cmmodule.c47 CmpDesc_Convert(PyObject *v, ComponentDescription *p_itself) in CmpDesc_Convert() argument
50 PyMac_GetOSType, &p_itself->componentType, in CmpDesc_Convert()
51 PyMac_GetOSType, &p_itself->componentSubType, in CmpDesc_Convert()
52 PyMac_GetOSType, &p_itself->componentManufacturer, in CmpDesc_Convert()
53 &p_itself->componentFlags, &p_itself->componentFlagsMask); in CmpDesc_Convert()
83 int CmpInstObj_Convert(PyObject *v, ComponentInstance *p_itself) in CmpInstObj_Convert() argument
90 *p_itself = ((ComponentInstanceObject *)v)->ob_itself; in CmpInstObj_Convert()
355 int CmpObj_Convert(PyObject *v, Component *p_itself) in CmpObj_Convert() argument
358 *p_itself = 0; in CmpObj_Convert()
366 *p_itself = ((ComponentObject *)v)->ob_itself; in CmpObj_Convert()
/external/python/cpython2/Mac/Modules/cf/
D_CFmodule.c90 CFRange_Convert(PyObject *v, CFRange *p_itself) in CFRange_Convert() argument
96 p_itself->location = (CFIndex)location; in CFRange_Convert()
97 p_itself->length = (CFIndex)length; in CFRange_Convert()
103 OptionalCFURLRefObj_Convert(PyObject *v, CFURLRef *p_itself) in OptionalCFURLRefObj_Convert() argument
106 p_itself = NULL; in OptionalCFURLRefObj_Convert()
109 return CFURLRefObj_Convert(v, p_itself); in OptionalCFURLRefObj_Convert()
141 int CFTypeRefObj_Convert(PyObject *v, CFTypeRef *p_itself) in CFTypeRefObj_Convert() argument
144 if (v == Py_None) { *p_itself = NULL; return 1; } in CFTypeRefObj_Convert()
152 *p_itself = ((CFTypeRefObject *)v)->ob_itself; in CFTypeRefObj_Convert()
504 int CFArrayRefObj_Convert(PyObject *v, CFArrayRef *p_itself) in CFArrayRefObj_Convert() argument
[all …]
/external/python/cpython2/Mac/Modules/carbonevt/
D_CarbonEvtmodule.c128 int EventRef_Convert(PyObject *v, EventRef *p_itself) in EventRef_Convert() argument
135 *p_itself = ((EventRefObject *)v)->ob_itself; in EventRef_Convert()
473 int EventQueueRef_Convert(PyObject *v, EventQueueRef *p_itself) in EventQueueRef_Convert() argument
480 *p_itself = ((EventQueueRefObject *)v)->ob_itself; in EventQueueRef_Convert()
694 int EventLoopRef_Convert(PyObject *v, EventLoopRef *p_itself) in EventLoopRef_Convert() argument
701 *p_itself = ((EventLoopRefObject *)v)->ob_itself; in EventLoopRef_Convert()
824 int EventLoopTimerRef_Convert(PyObject *v, EventLoopTimerRef *p_itself) in EventLoopTimerRef_Convert() argument
831 *p_itself = ((EventLoopTimerRefObject *)v)->ob_itself; in EventLoopTimerRef_Convert()
974 int EventHandlerRef_Convert(PyObject *v, EventHandlerRef *p_itself) in EventHandlerRef_Convert() argument
981 *p_itself = ((EventHandlerRefObject *)v)->ob_itself; in EventHandlerRef_Convert()
[all …]
/external/python/cpython2/Mac/Modules/mlte/
D_Mltemodule.c39 OptFSSpecPtr_Convert(PyObject *v, FSSpec **p_itself) in OptFSSpecPtr_Convert() argument
44 *p_itself = NULL; in OptFSSpecPtr_Convert()
47 *p_itself = &fss; in OptFSSpecPtr_Convert()
48 return PyMac_GetFSSpec(v, *p_itself); in OptFSSpecPtr_Convert()
55 OptGWorldObj_Convert(PyObject *v, GWorldPtr *p_itself) in OptGWorldObj_Convert() argument
59 *p_itself = NULL; in OptGWorldObj_Convert()
62 return GWorldObj_Convert(v, p_itself); in OptGWorldObj_Convert()
89 int TXNObj_Convert(PyObject *v, TXNObject *p_itself) in TXNObj_Convert() argument
96 *p_itself = ((TXNObjectObject *)v)->ob_itself; in TXNObj_Convert()
1325 int TXNFontMenuObj_Convert(PyObject *v, TXNFontMenuObject *p_itself) in TXNFontMenuObj_Convert() argument
[all …]
/external/python/cpython2/Mac/Modules/ibcarbon/
D_IBCarbon.c39 int IBNibRefObj_Convert(PyObject *v, IBNibRef *p_itself) in IBNibRefObj_Convert() argument
46 *p_itself = ((IBNibRefObject *)v)->ob_itself; in IBNibRefObj_Convert()
/external/python/cpython2/Mac/Modules/te/
D_TEmodule.c44 TextStyle_Convert(PyObject *v, TextStylePtr p_itself) in TextStyle_Convert() argument
48 if( !PyArg_ParseTuple(v, "lllO&", &font, &face, &size, QdRGB_Convert, &p_itself->tsColor) ) in TextStyle_Convert()
50 p_itself->tsFont = (short)font; in TextStyle_Convert()
51 p_itself->tsFace = (Style)face; in TextStyle_Convert()
52 p_itself->tsSize = (short)size; in TextStyle_Convert()
82 int TEObj_Convert(PyObject *v, TEHandle *p_itself) in TEObj_Convert() argument
89 *p_itself = ((TEObject *)v)->ob_itself; in TEObj_Convert()
/external/python/cpython2/Mac/Modules/scrap/
D_Scrapmodule.c42 int ScrapObj_Convert(PyObject *v, ScrapRef *p_itself) in ScrapObj_Convert() argument
49 *p_itself = ((ScrapObject *)v)->ob_itself; in ScrapObj_Convert()
/external/python/cpython2/Mac/Modules/res/
D_Resmodule.c62 int ResObj_Convert(PyObject *v, Handle *p_itself) in ResObj_Convert() argument
69 *p_itself = ((ResourceObject *)tmp)->ob_itself; in ResObj_Convert()
80 *p_itself = ((ResourceObject *)v)->ob_itself; in ResObj_Convert()
1706 int OptResObj_Convert(PyObject *v, Handle *p_itself) in OptResObj_Convert() argument
1711 *p_itself = NULL; in OptResObj_Convert()
1716 *p_itself = ((ResourceObject *)v)->ob_itself; in OptResObj_Convert()
1721 *p_itself = ((ResourceObject *)tmp)->ob_itself; in OptResObj_Convert()
/external/python/cpython2/Mac/Modules/app/
D_Appmodule.c21 static int ThemeButtonDrawInfo_Convert(PyObject *v, ThemeButtonDrawInfo *p_itself) in ThemeButtonDrawInfo_Convert() argument
23 return PyArg_Parse(v, "(iHH)", &p_itself->state, &p_itself->value, &p_itself->adornment); in ThemeButtonDrawInfo_Convert()
49 int ThemeDrawingStateObj_Convert(PyObject *v, ThemeDrawingState *p_itself) in ThemeDrawingStateObj_Convert() argument
56 *p_itself = ((ThemeDrawingStateObject *)v)->ob_itself; in ThemeDrawingStateObj_Convert()
/external/python/cpython2/Mac/Modules/osa/
D_OSAmodule.c57 int OSAObj_Convert(PyObject *v, ComponentInstance *p_itself) in OSAObj_Convert() argument
60 if (CmpInstObj_Convert(v, p_itself)) in OSAObj_Convert()
69 *p_itself = ((OSAComponentInstanceObject *)v)->ob_itself; in OSAObj_Convert()
/external/python/cpython2/Mac/Modules/dlg/
D_Dlgmodule.c149 int DlgObj_Convert(PyObject *v, DialogPtr *p_itself) in DlgObj_Convert() argument
151 if (v == Py_None) { *p_itself = NULL; return 1; } in DlgObj_Convert()
152 if (PyInt_Check(v)) { *p_itself = (DialogPtr)PyInt_AsLong(v); in DlgObj_Convert()
159 *p_itself = ((DialogObject *)v)->ob_itself; in DlgObj_Convert()
/external/python/cpython2/Mac/Modules/qdoffs/
D_Qdoffsmodule.c55 int GWorldObj_Convert(PyObject *v, GWorldPtr *p_itself) in GWorldObj_Convert() argument
62 *p_itself = ((GWorldObject *)v)->ob_itself; in GWorldObj_Convert()
/external/python/cpython2/Mac/Modules/file/
D_Filemodule.c61 static int FInfo_Convert(PyObject *v, FInfo *p_itself);
64 static int Alias_Convert(PyObject *v, AliasHandle *p_itself);
186 static int FSCatalogInfo_Convert(PyObject *v, FSCatalogInfo *p_itself) in FSCatalogInfo_Convert() argument
193 *p_itself = ((FSCatalogInfoObject *)v)->ob_itself; in FSCatalogInfo_Convert()
564 static int FInfo_Convert(PyObject *v, FInfo *p_itself) in FInfo_Convert() argument
571 *p_itself = ((FInfoObject *)v)->ob_itself; in FInfo_Convert()
753 static int Alias_Convert(PyObject *v, AliasHandle *p_itself) in Alias_Convert() argument
760 *p_itself = ((AliasObject *)v)->ob_itself; in Alias_Convert()
/external/python/cpython2/Mac/Modules/fm/
D_Fmmodule.c40 FMRec_Convert(PyObject *v, FMetricRec *p_itself)
/external/python/cpython2/Mac/Modules/qd/
D_Qdmodule.c48 int QdRGB_Convert(PyObject *v, RGBColorPtr p_itself) in QdRGB_Convert() argument
54 p_itself->red = (unsigned short)red; in QdRGB_Convert()
55 p_itself->green = (unsigned short)green; in QdRGB_Convert()
56 p_itself->blue = (unsigned short)blue; in QdRGB_Convert()
94 int GrafObj_Convert(PyObject *v, GrafPtr *p_itself) in GrafObj_Convert() argument
100 *p_itself = (GrafPtr)GetWindowPort(win); in GrafObj_Convert()
108 *p_itself = (GrafPtr)GetWindowPort(GetDialogWindow(dlg)); in GrafObj_Convert()
113 *p_itself = (GrafPtr)GetWindowPort(win); in GrafObj_Convert()
122 *p_itself = ((GrafPortObject *)v)->ob_itself; in GrafObj_Convert()
1433 int BMObj_Convert(PyObject *v, BitMapPtr *p_itself) in BMObj_Convert() argument
[all …]
/external/python/cpython2/Mac/Modules/snd/
D_Sndmodule.c286 static int SPBObj_Convert(PyObject *v, SPBPtr *p_itself) in SPBObj_Convert() argument
293 *p_itself = &((SPBObject *)v)->ob_spb; in SPBObj_Convert()
/external/python/cpython2/Mac/Modules/list/
D_Listmodule.c65 int ListObj_Convert(PyObject *v, ListHandle *p_itself) in ListObj_Convert() argument
72 *p_itself = ((ListObject *)v)->ob_itself; in ListObj_Convert()
/external/python/cpython2/Mac/Modules/drag/
D_Dragmodule.c64 int DragObj_Convert(PyObject *v, DragRef *p_itself) in DragObj_Convert() argument
71 *p_itself = ((DragObjObject *)v)->ob_itself; in DragObj_Convert()
/external/python/cpython2/Mac/Modules/win/
D_Winmodule.c73 int WinObj_Convert(PyObject *v, WindowPtr *p_itself) in WinObj_Convert() argument
76 if (v == Py_None) { *p_itself = NULL; return 1; } in WinObj_Convert()
77 if (PyInt_Check(v)) { *p_itself = (WindowPtr)PyInt_AsLong(v); return 1; } in WinObj_Convert()
82 *p_itself = GetDialogWindow(dlg); in WinObj_Convert()
92 *p_itself = ((WindowObject *)v)->ob_itself; in WinObj_Convert()
/external/python/cpython2/Mac/Modules/menu/
D_Menumodule.c46 int OptMenuObj_Convert(PyObject *v, MenuRef *p_itself) in OptMenuObj_Convert() argument
49 *p_itself = NULL; in OptMenuObj_Convert()
52 return MenuObj_Convert(v, p_itself); in OptMenuObj_Convert()
77 int MenuObj_Convert(PyObject *v, MenuHandle *p_itself) in MenuObj_Convert() argument
84 *p_itself = ((MenuObject *)v)->ob_itself; in MenuObj_Convert()
/external/python/cpython2/Mac/Modules/qt/
D_Qtmodule.c68 QtTimeRecord_Convert(PyObject *v, TimeRecord *p_itself) in QtTimeRecord_Convert() argument
71 if( !PyArg_ParseTuple(v, "O&l|O", PyMac_Getwide, &p_itself->value, &p_itself->scale, in QtTimeRecord_Convert()
75 p_itself->base = NULL; in QtTimeRecord_Convert()
77 if ( !TimeBaseObj_Convert(base, &p_itself->base) ) in QtTimeRecord_Convert()
83 QtMusicMIDIPacket_Convert(PyObject *v, MusicMIDIPacket *p_itself) in QtMusicMIDIPacket_Convert() argument
87 … if( !PyArg_ParseTuple(v, "hls#", &p_itself->length, &p_itself->reserved, p_itself->data, dummy) ) in QtMusicMIDIPacket_Convert()
121 int IdleManagerObj_Convert(PyObject *v, IdleManager *p_itself) in IdleManagerObj_Convert() argument
125 *p_itself = NULL; in IdleManagerObj_Convert()
133 *p_itself = ((IdleManagerObject *)v)->ob_itself; in IdleManagerObj_Convert()
245 int MovieCtlObj_Convert(PyObject *v, MovieController *p_itself) in MovieCtlObj_Convert() argument
[all …]
/external/python/cpython2/Mac/Modules/ae/
D_AEmodule.c72 int AEDesc_Convert(PyObject *v, AEDesc *p_itself) in AEDesc_Convert() argument
79 *p_itself = ((AEDescObject *)v)->ob_itself; in AEDesc_Convert()
/external/python/cpython2/Mac/Modules/ctl/
D_Ctlmodule.c159 int CtlObj_Convert(PyObject *v, ControlHandle *p_itself) in CtlObj_Convert() argument
166 *p_itself = ((ControlObject *)v)->ob_itself; in CtlObj_Convert()