Home
last modified time | relevance | path

Searched refs:model_module (Results 1 – 3 of 3) sorted by relevance

/external/autotest/client/site_tests/performance_InboxInputLatency/
Dperformance_InboxInputLatency.py15 from telemetry.timeline import model as model_module unknown
143 timeline_model = model_module.TimelineModel(results)
/external/python/cpython3/Modules/
Dpyexpat.c1649 PyObject *model_module; in MODULE_INITFUNC() local
1714 model_module = PyDict_GetItem(d, modelmod_name); in MODULE_INITFUNC()
1715 if (model_module == NULL) { in MODULE_INITFUNC()
1716 model_module = PyModule_New(MODULE_NAME ".model"); in MODULE_INITFUNC()
1717 if (model_module != NULL) { in MODULE_INITFUNC()
1718 _PyImport_SetModule(modelmod_name, model_module); in MODULE_INITFUNC()
1720 PyModule_AddObject(m, "model", model_module); in MODULE_INITFUNC()
1724 if (errors_module == NULL || model_module == NULL) { in MODULE_INITFUNC()
1843 #define MYCONST(c) PyModule_AddIntConstant(model_module, #c, c) in MODULE_INITFUNC()
1844 PyModule_AddStringConstant(model_module, "__doc__", in MODULE_INITFUNC()
/external/python/cpython2/Modules/
Dpyexpat.c1840 PyObject *model_module; in MODULE_INITFUNC() local
1907 model_module = PyDict_GetItem(d, modelmod_name); in MODULE_INITFUNC()
1908 if (model_module == NULL) { in MODULE_INITFUNC()
1909 model_module = PyModule_New(MODULE_NAME ".model"); in MODULE_INITFUNC()
1910 if (model_module != NULL) { in MODULE_INITFUNC()
1911 PyDict_SetItem(sys_modules, modelmod_name, model_module); in MODULE_INITFUNC()
1913 PyModule_AddObject(m, "model", model_module); in MODULE_INITFUNC()
1917 if (errors_module == NULL || model_module == NULL) in MODULE_INITFUNC()
2007 #define MYCONST(c) PyModule_AddIntConstant(model_module, #c, c) in MODULE_INITFUNC()
2008 PyModule_AddStringConstant(model_module, "__doc__", in MODULE_INITFUNC()