Home
last modified time | relevance | path

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

/third_party/python/Modules/_sqlite/
Dconnection.c697 PyObject* function_result = NULL; in _pysqlite_step_callback() local
735 function_result = PyObject_CallObject(stepmethod, args); in _pysqlite_step_callback()
738 if (!function_result) { in _pysqlite_step_callback()
749 Py_XDECREF(function_result); in _pysqlite_step_callback()
757 PyObject* function_result; in _pysqlite_final_callback() local
782 function_result = _PyObject_CallMethodIdNoArgs(*aggregate_instance, &PyId_finalize); in _pysqlite_final_callback()
787 if (function_result) { in _pysqlite_final_callback()
788 ok = _pysqlite_set_result(context, function_result) == 0; in _pysqlite_final_callback()
789 Py_DECREF(function_result); in _pysqlite_final_callback()
/third_party/node/deps/v8/src/wasm/
Dmodule-compiler.cc2526 DecodeResult function_result = in RunInBackground() local
2529 if (function_result.failed()) { in RunInBackground()
2530 result = ModuleResult(function_result.error()); in RunInBackground()
/third_party/python/Doc/library/
Dcollections.rst1217 self.cache = OrderedDict() # { cached_key : function_result }