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

  /device/linaro/bootloader/edk2/AppPkg/Applications/Python/Python-2.7.2/Modules/_sqlite/
connection.c 685 PyObject** aggregate_instance; local
696 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
698 if (*aggregate_instance == 0) {
699 *aggregate_instance = PyObject_CallFunction(aggregate_class, "");
702 *aggregate_instance = 0;
713 stepmethod = PyObject_GetAttrString(*aggregate_instance, "step");
747 PyObject** aggregate_instance; local
755 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
756 if (!*aggregate_instance) {
763 function_result = PyObject_CallMethod(*aggregate_instance, "finalize", "");
    [all...]
  /external/python/cpython2/Modules/_sqlite/
connection.c 696 PyObject** aggregate_instance; local
707 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
709 if (*aggregate_instance == 0) {
710 *aggregate_instance = PyObject_CallFunction(aggregate_class, "");
713 *aggregate_instance = 0;
724 stepmethod = PyObject_GetAttrString(*aggregate_instance, "step");
758 PyObject** aggregate_instance; local
767 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
768 if (!*aggregate_instance) {
775 function_result = PyObject_CallMethod(*aggregate_instance, "finalize", "")
    [all...]
  /external/python/cpython3/Modules/_sqlite/
connection.c 634 PyObject** aggregate_instance; local
645 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
647 if (*aggregate_instance == 0) {
648 *aggregate_instance = PyObject_CallFunction(aggregate_class, NULL);
651 *aggregate_instance = 0;
662 stepmethod = PyObject_GetAttrString(*aggregate_instance, "step");
696 PyObject** aggregate_instance; local
708 aggregate_instance = (PyObject**)sqlite3_aggregate_context(context, sizeof(PyObject*));
709 if (!*aggregate_instance) {
720 function_result = _PyObject_CallMethodId(*aggregate_instance, &PyId_finalize, NULL)
    [all...]

Completed in 80 milliseconds