HomeSort by relevance Sort by last modified time
    Searched refs:aggregate_class (Results 1 - 3 of 3) sorted by null

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.c 684 PyObject* aggregate_class; local
694 aggregate_class = (PyObject*)sqlite3_user_data(context);
699 *aggregate_instance = PyObject_CallFunction(aggregate_class, "");
884 PyObject* aggregate_class; local
888 static char *kwlist[] = { "name", "n_arg", "aggregate_class", NULL };
896 kwlist, &name, &n_arg, &aggregate_class)) {
900 rc = sqlite3_create_function(self->db, name, n_arg, SQLITE_UTF8, (void*)aggregate_class, 0, &_pysqlite_step_callback, &_pysqlite_final_callback);
906 if (PyDict_SetItem(self->function_pinboard, aggregate_class, Py_None) == -1)
    [all...]
  /external/python/cpython2/Modules/_sqlite/
connection.c 695 PyObject* aggregate_class; local
705 aggregate_class = (PyObject*)sqlite3_user_data(context);
710 *aggregate_instance = PyObject_CallFunction(aggregate_class, "");
897 PyObject* aggregate_class; local
901 static char *kwlist[] = { "name", "n_arg", "aggregate_class", NULL };
909 kwlist, &name, &n_arg, &aggregate_class)) {
913 rc = sqlite3_create_function(self->db, name, n_arg, SQLITE_UTF8, (void*)aggregate_class, 0, &_pysqlite_step_callback, &_pysqlite_final_callback);
919 if (PyDict_SetItem(self->function_pinboard, aggregate_class, Py_None) == -1)
    [all...]
  /external/python/cpython3/Modules/_sqlite/
connection.c 633 PyObject* aggregate_class; local
643 aggregate_class = (PyObject*)sqlite3_user_data(context);
648 *aggregate_instance = PyObject_CallFunction(aggregate_class, NULL);
855 PyObject* aggregate_class; local
859 static char *kwlist[] = { "name", "n_arg", "aggregate_class", NULL };
867 kwlist, &name, &n_arg, &aggregate_class)) {
871 rc = sqlite3_create_function(self->db, name, n_arg, SQLITE_UTF8, (void*)aggregate_class, 0, &_pysqlite_step_callback, &_pysqlite_final_callback);
877 if (PyDict_SetItem(self->function_pinboard, aggregate_class, Py_None) == -1)
    [all...]

Completed in 490 milliseconds