/external/python/cpython2/Mac/Modules/ah/ |
D | ahsupport.py | 10 MODNAME = '_AH' # The name of the module variable 15 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 30 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/fm/ |
D | fmsupport.py | 10 MODNAME = '_Fm' # The name of the module variable 15 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 66 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/folder/ |
D | foldersupport.py | 10 MODNAME = '_Folder' # The name of the module variable 15 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 41 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/launch/ |
D | launchsupport.py | 9 MODNAME = '_Launch' # The name of the module variable 18 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 81 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/help/ |
D | helpsupport.py | 9 MODNAME = '_Help' # The name of the module variable 18 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 58 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/evt/ |
D | evtsupport.py | 10 MODNAME = '_Evt' # The name of the module variable 19 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 45 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/scrap/ |
D | scrapsupport.py | 13 MODNAME = '_Scrap' # The name of the module variable 21 OUTPUTFILE = '@' + MODNAME + "module.c" # The file generated by this program 55 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/icn/ |
D | icnsupport.py | 10 MODNAME = '_Icn' # The name of the module variable 19 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 70 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/cm/ |
D | cmsupport.py | 10 MODNAME = '_Cm' # The name of the module variable 17 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 100 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/osa/ |
D | osasupport.py | 10 MODNAME = '_OSA' # The name of the module variable 16 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 81 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/menu/ |
D | menusupport.py | 10 MODNAME = '_Menu' # The name of the module variable 19 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 88 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/qdoffs/ |
D | qdoffssupport.py | 10 MODNAME = '_Qdoffs' # The name of the module variable 19 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 77 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/cg/ |
D | cgsupport.py | 11 MODNAME = '_CG' # The name of the module variable 16 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 131 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/te/ |
D | tesupport.py | 10 MODNAME = '_TE' # The name of the module variable 19 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 190 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/app/ |
D | appsupport.py | 10 MODNAME = '_App' # The name of the module variable 19 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 109 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/mlte/ |
D | mltesupport.py | 11 MODNAME = '_Mlte' # The name of the module variable 16 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 149 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/drag/ |
D | dragsupport.py | 10 MODNAME = '_Drag' # The name of the module variable 18 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 208 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff, variablestuff)
|
/external/python/cpython2/Mac/Modules/list/ |
D | listsupport.py | 10 MODNAME = '_List' # The name of the module variable 19 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 161 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/win/ |
D | winsupport.py | 10 MODNAME = '_Win' # The name of the module variable 19 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 183 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/qd/ |
D | qdsupport.py | 10 MODNAME = '_Qd' # The name of the module variable 19 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 252 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff, variablestuff)
|
/external/python/cpython2/Mac/Modules/ctl/ |
D | ctlsupport.py | 10 MODNAME = '_Ctl' # The name of the module variable 18 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 499 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/qt/ |
D | qtsupport.py | 12 MODNAME = '_Qt' # The name of the module variable 20 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 293 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff)
|
/external/python/cpython2/Mac/Modules/cf/ |
D | cfsupport.py | 11 MODNAME = '_CF' # The name of the module variable 16 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 489 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff, variablestuff)
|
/external/python/cpython2/Mac/Modules/file/ |
D | filesupport.py | 21 MODNAME = '_File' # The name of the module variable 27 OUTPUTFILE = MODNAME + "module.c" # The file generated by this program 806 module = MacModule(MODNAME, MODPREFIX, includestuff, finalstuff, initstuff,
|
/external/python/mock/mock/tests/ |
D | testpatch.py | 27 MODNAME = '%s.PTModule' % __name__ variable 1718 p = patch(MODNAME, create=True, **{kwarg: True}) 1726 p = patch(MODNAME, autospec=0, **{kwarg: 0}) 1731 p = patch(MODNAME, spec_set=0, **{kwarg: 0}) 1736 p = patch(MODNAME, spec=0, **{kwarg: 0}) 1742 p = patch(MODNAME, spec=False, spec_set=False, autospec=False) 1754 p = patch(MODNAME, **{kwarg: 0}) 1764 p = patch(MODNAME, spec_set=True, **{kwarg: True}) 1776 p = patch(MODNAME, spec=spec) 1786 p = patch(MODNAME, spec=spec)
|