Lines Matching defs:value
624 sqlite_int64 value = _pysqlite_long_as_int64(py_val);
625 if (value == -1 && PyErr_Occurred())
627 sqlite3_result_int64(context, value);
629 double value = PyFloat_AsDouble(py_val);
630 if (value == -1 && PyErr_Occurred()) {
633 sqlite3_result_double(context, value);
856 PyObject *exception, *value, *tb;
870 // Keep the exception (if any) of the last call to step, value, or inverse
871 PyErr_Fetch(&exception, &value, &tb);
886 _PyErr_ChainExceptions(exception, value, tb);
888 /* Note: contrary to the step, value, and inverse callbacks, SQLite
897 PyErr_Restore(exception, value, tb);
1097 * Regarding the 'value' aggregate callback:
1100 * the current value of the aggregate.
1119 ? "user-defined aggregate's 'value' method not defined"
1120 : "user-defined aggregate's 'value' method raised error");
1128 "'value' method");
1145 A class with step(), finalize(), value(), and inverse() methods.
1308 * The integer return value from the callback is currently ignored, though this
2216 value as exc_value: object
2277 the prior value of the limit is returned.