HomeSort by relevance Sort by last modified time
    Searched defs:itself (Results 1 - 25 of 26) sorted by null

1 2

  /external/python/cpython2/Mac/Modules/ibcarbon/
_IBCarbon.c 30 PyObject *IBNibRefObj_New(IBNibRef itself)
35 it->ob_itself = itself;
153 IBNibRef itself; local
154 char *kw[] = {"itself", 0};
156 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, IBNibRefObj_Convert, &itself)) return NULL;
158 ((IBNibRefObject *)_self)->ob_itself = itself;
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.10/Modules/
pyexpat.c 69 XML_Parser itself; member in struct:__anon4470
125 XML_Parser parser = self->itself;
257 XML_SetExternalEntityRefHandler(self->itself,
359 XML_StopParser(self->itself, XML_FALSE);
434 XML_SetCharacterDataHandler(self->itself,
448 XML_SetCharacterDataHandler(self->itself,
511 max = XML_GetSpecifiedAttributeCount(self->itself);
761 XML_FreeContentModel(self->itself, model);
880 return set_error(self, XML_GetErrorCode(self->itself));
902 return get_parse_result(self, XML_Parse(self->itself, s, slen, isFinal));
    [all...]
  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/
pyexpat.c 69 XML_Parser itself; member in struct:__anon4806
125 XML_Parser parser = self->itself;
257 XML_SetExternalEntityRefHandler(self->itself,
359 XML_StopParser(self->itself, XML_FALSE);
434 XML_SetCharacterDataHandler(self->itself,
448 XML_SetCharacterDataHandler(self->itself,
511 max = XML_GetSpecifiedAttributeCount(self->itself);
761 XML_FreeContentModel(self->itself, model);
880 return set_error(self, XML_GetErrorCode(self->itself));
902 return get_parse_result(self, XML_Parse(self->itself, s, slen, isFinal));
    [all...]
  /external/python/cpython2/Mac/Modules/qdoffs/
_Qdoffsmodule.c 45 PyObject *GWorldObj_New(GWorldPtr itself)
48 if (itself == NULL) return PyMac_Error(resNotFound);
51 it->ob_itself = itself;
142 GWorldPtr itself; local
143 char *kw[] = {"itself", 0};
145 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, GWorldObj_Convert, &itself)) return NULL;
147 ((GWorldObject *)_self)->ob_itself = itself;
  /external/python/cpython2/Modules/
pyexpat.c 69 XML_Parser itself; member in struct:__anon32860
125 XML_Parser parser = self->itself;
257 XML_SetExternalEntityRefHandler(self->itself,
359 XML_StopParser(self->itself, XML_FALSE);
434 XML_SetCharacterDataHandler(self->itself,
448 XML_SetCharacterDataHandler(self->itself,
511 max = XML_GetSpecifiedAttributeCount(self->itself);
761 XML_FreeContentModel(self->itself, model);
880 return set_error(self, XML_GetErrorCode(self->itself));
902 return get_parse_result(self, XML_Parse(self->itself, s, slen, isFinal))
    [all...]
  /external/python/cpython2/Mac/Modules/
Nav.c 221 NavReplyRecord itself; member in struct:__anon32618
242 err = NavTranslateFile(&self->itself, howToTranslate);
263 err = NavCompleteSave(&self->itself, howToTranslate);
284 newnavrrobject(NavReplyRecord *itself)
291 self->itself = *itself;
299 NavDisposeReply(&self->itself);
319 return Py_BuildValue("h", self->itself.version);
321 return Py_BuildValue("l", (long)self->itself.validRecord);
323 return Py_BuildValue("l", (long)self->itself.replacing)
    [all...]
  /external/python/cpython2/Mac/Modules/cm/
_Cmmodule.c 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; local
709 Component itself; local
    [all...]
  /external/python/cpython2/Mac/Modules/osa/
_OSAmodule.c 44 PyObject *OSAObj_New(ComponentInstance itself)
47 if (itself == NULL) {
53 it->ob_itself = itself;
804 ComponentInstance itself; local
805 char *kw[] = {"itself", 0};
807 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, OSAObj_Convert, &itself)) return NULL;
809 ((OSAComponentInstanceObject *)_self)->ob_itself = itself;
  /external/python/cpython2/Mac/Modules/ae/
_AEmodule.c 62 PyObject *AEDesc_New(AEDesc *itself)
67 it->ob_itself = *itself;
873 AEDesc itself; local
874 char *kw[] = {"itself", 0};
876 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, AEDesc_Convert, &itself)) return NULL;
878 ((AEDescObject *)_self)->ob_itself = itself;
    [all...]
  /external/python/cpython2/Mac/Modules/cg/
_CGmodule.c 26 PyObject *CGPoint_New(CGPoint *itself)
30 itself->x,
31 itself->y);
44 PyObject *CGRect_New(CGRect *itself)
48 itself->origin.x,
49 itself->origin.y,
50 itself->size.width,
51 itself->size.height);
66 PyObject *CGAffineTransform_New(CGAffineTransform *itself)
70 itself->a
1202 CGContextRef itself; local
    [all...]
  /external/python/cpython2/Mac/Modules/dlg/
_Dlgmodule.c 138 PyObject *DlgObj_New(DialogPtr itself)
141 if (itself == NULL) { Py_INCREF(Py_None); return Py_None; }
144 it->ob_itself = itself;
145 SetWRefCon(GetDialogWindow(itself), (long)it);
964 DialogPtr itself; local
965 char *kw[] = {"itself", 0};
967 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, DlgObj_Convert, &itself)) return NULL;
969 ((DialogObject *)_self)->ob_itself = itself;
    [all...]
  /external/python/cpython2/Mac/Modules/drag/
_Dragmodule.c 50 PyObject *DragObj_New(DragRef itself)
53 if (itself == NULL) {
59 it->ob_itself = itself;
749 DragRef itself; local
750 char *kw[] = {"itself", 0};
752 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, DragObj_Convert, &itself)) return NULL;
754 ((DragObjObject *)_self)->ob_itself = itself;
    [all...]
  /external/python/cpython2/Mac/Modules/list/
_Listmodule.c 49 PyObject *ListObj_New(ListHandle itself)
52 if (itself == NULL) {
58 it->ob_itself = itself;
61 SetListRefCon(itself, (long)it);
744 ListHandle itself; local
745 char *kw[] = {"itself", 0};
747 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, ListObj_Convert, &itself)) return NULL;
749 ((ListObject *)_self)->ob_itself = itself;
    [all...]
  /external/python/cpython2/Mac/Modules/res/
_Resmodule.c 51 PyObject *ResObj_New(Handle itself)
54 if (itself == NULL) return PyMac_Error(resNotFound);
57 it->ob_itself = itself;
583 Handle itself; local
584 char *kw[] = {"itself", 0};
586 if (PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, ResObj_Convert, &itself))
588 ((ResourceObject *)_self)->ob_itself = itself;
593 if ((itself = NewHandle(srclen)) == NULL)
598 ((ResourceObject *)_self)->ob_itself = itself;
601 HLock(itself);
    [all...]
  /external/python/cpython2/Mac/Modules/te/
_TEmodule.c 36 TextStyle_New(TextStylePtr itself)
39 return Py_BuildValue("lllO&", (long)itself->tsFont, (long)itself->tsFace, (long)itself->tsSize, QdRGB_New,
40 &itself->tsColor);
69 PyObject *TEObj_New(TEHandle itself)
72 if (itself == NULL) {
78 it->ob_itself = itself;
991 TEHandle itself; local
992 char *kw[] = {"itself", 0}
    [all...]
  /external/python/cpython2/Mac/Modules/app/
_Appmodule.c 40 PyObject *ThemeDrawingStateObj_New(ThemeDrawingState itself)
45 it->ob_itself = itself;
122 ThemeDrawingState itself; local
123 char *kw[] = {"itself", 0};
125 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, ThemeDrawingStateObj_Convert, &itself)) return NULL;
127 ((ThemeDrawingStateObject *)_self)->ob_itself = itself;
    [all...]
  /external/python/cpython2/Mac/Modules/carbonevt/
_CarbonEvtmodule.c 26 PyObject *EventHandlerCallRef_New(EventHandlerCallRef itself);
27 PyObject *EventRef_New(EventRef itself);
119 PyObject *EventRef_New(EventRef itself)
124 it->ob_itself = itself;
394 EventRef itself; local
395 char *kw[] = {"itself", 0};
397 if (!PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, EventRef_Convert, &itself)) return NULL;
399 ((EventRefObject *)_self)->ob_itself = itself;
464 PyObject *EventQueueRef_New(EventQueueRef itself)
469 it->ob_itself = itself;
615 EventQueueRef itself; local
745 EventLoopRef itself; local
893 EventLoopTimerRef itself; local
1085 EventHandlerRef itself; local
1218 EventHandlerCallRef itself; local
1373 EventTargetRef itself; local
1503 EventHotKeyRef itself; local
    [all...]
  /external/python/cpython2/Mac/Modules/mlte/
_Mltemodule.c 79 PyObject *TXNObj_New(TXNObject itself)
82 if (itself == NULL) return PyMac_Error(resNotFound);
85 it->ob_itself = itself;
1245 TXNObject itself; local
1399 TXNFontMenuObject itself; local
    [all...]
  /external/python/cpython3/Modules/
pyexpat.c 58 XML_Parser itself; member in struct:__anon33485
114 XML_Parser parser = self->itself;
216 XML_SetExternalEntityRefHandler(self->itself,
229 XML_StopParser(self->itself, XML_FALSE);
275 XML_SetCharacterDataHandler(self->itself,
289 XML_SetCharacterDataHandler(self->itself,
359 max = XML_GetSpecifiedAttributeCount(self->itself);
586 XML_FreeContentModel(self->itself, model);
696 return set_error(self, XML_GetErrorCode(self->itself));
734 (void)XML_SetEncoding(self->itself, "utf-8")
    [all...]
  /external/python/cpython2/Mac/Modules/menu/
_Menumodule.c 36 PyObject *OptMenuObj_New(MenuRef itself)
38 if (itself == NULL) {
42 return MenuObj_New(itself);
68 PyObject *MenuObj_New(MenuHandle itself)
73 it->ob_itself = itself;
2544 MenuHandle itself; local
    [all...]
  /external/python/cpython2/Mac/Modules/win/
_Winmodule.c 56 PyObject *WinObj_New(WindowPtr itself)
59 if (itself == NULL) return PyMac_Error(resNotFound);
63 it->ob_itself = itself;
65 if (GetWRefCon(itself) == 0)
67 SetWRefCon(itself, (long)it);
2597 WindowPtr itself; local
    [all...]
  /external/python/cpython2/Mac/Modules/cf/
_CFmodule.c 84 PyObject *CFRange_New(CFRange *itself)
86 return Py_BuildValue("ll", (long)itself->location, (long)itself->length);
126 PyObject *CFTypeRefObj_New(CFTypeRef itself)
129 if (itself == NULL)
136 it->ob_itself = itself;
404 CFTypeRef itself; local
405 char *kw[] = {"itself", 0};
407 if (PyArg_ParseTupleAndKeywords(_args, _kwds, "O&", kw, CFTypeRefObj_Convert, &itself))
409 ((CFTypeRefObject *)_self)->ob_itself = itself;
608 CFArrayRef itself; local
848 CFMutableArrayRef itself; local
1041 CFDictionaryRef itself; local
1218 CFMutableDictionaryRef itself; local
1449 CFDataRef itself; local
1714 CFMutableDataRef itself; local
2457 CFStringRef itself; local
2845 CFMutableStringRef itself; local
3497 CFURLRef itself; local
    [all...]
  /external/python/cpython2/Mac/Modules/file/
_Filemodule.c 51 static PyObject *FSRef_New(FSRef *itself);
53 static PyObject *FInfo_New(FInfo *itself);
55 static PyObject *FSSpec_New(FSSpec *itself);
59 static PyObject *Alias_New(AliasHandle itself);
110 PyMac_BuildHFSUniStr255(HFSUniStr255 *itself)
113 return Py_BuildValue("u#", itself->unicode, itself->length);
176 static PyObject *FSCatalogInfo_New(FSCatalogInfo *itself)
179 if (itself == NULL) { Py_INCREF(Py_None); return Py_None; }
182 it->ob_itself = *itself;
657 FInfo *itself = NULL; local
985 AliasHandle itself = NULL; local
    [all...]
  /external/python/cpython2/Mac/Modules/ctl/
_Ctlmodule.c 41 ControlFontStyle_New(ControlFontStyleRec *itself)
44 return Py_BuildValue("hhhhhhO&O&", itself->flags, itself->font,
45 itself->size, itself->style, itself->mode, itself->just,
46 QdRGB_New, &itself->foreColor, QdRGB_New, &itself->backColor);
51 ControlFontStyle_Convert(PyObject *v, ControlFontStyleRec *itself)
3856 ControlHandle itself; local
    [all...]
  /external/python/cpython2/Mac/Modules/qd/
_Qdmodule.c 42 PyObject *QdRGB_New(RGBColorPtr itself)
45 return Py_BuildValue("lll", (long)itself->red, (long)itself->green, (long)itself->blue);
64 PyObject *QdFI_New(FontInfo *itself)
67 return Py_BuildValue("hhhh", itself->ascent, itself->descent,
68 itself->widMax, itself->leading);
84 PyObject *GrafObj_New(GrafPtr itself)
1349 GrafPtr itself; local
1548 BitMapPtr itself; local
    [all...]

Completed in 1287 milliseconds

1 2