Home
last modified time | relevance | path

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

/device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
Drow.c183 if (PyType_IsSubtype(Py_TYPE(_other), &pysqlite_RowType)) { in pysqlite_row_richcompare()
209 PyTypeObject pysqlite_RowType = { variable
253 pysqlite_RowType.tp_new = PyType_GenericNew; in pysqlite_row_setup_types()
254 pysqlite_RowType.tp_as_mapping = &pysqlite_row_as_mapping; in pysqlite_row_setup_types()
255 return PyType_Ready(&pysqlite_RowType); in pysqlite_row_setup_types()
Drow.h35 extern PyTypeObject pysqlite_RowType;
Dmodule.c332 Py_INCREF(&pysqlite_RowType); in init_sqlite3()
333 PyModule_AddObject(module, "Row", (PyObject*) &pysqlite_RowType); in init_sqlite3()