| /sqlite-3.40.0/test/ |
| H A D | notify2.test | 66 while {[set rc [$::xStep $STMT]] eq "SQLITE_ROW"} { 170 foreach {iTest xStep xPrepare} { 176 set ThreadSetup "set xStep $xStep;set xPrepare $xPrepare;set nSecond $nSecond" 203 puts "Running $xStep test for $nSecond seconds" 211 incr anSuccess($xStep) [lindex $finished($ii) 0] 212 incr anAttempt($xStep) [lindex $finished($ii) 1] 224 set anWrite($xStep) [execsql {
|
| H A D | func3.test | 201 # Test the outcome of specifying NULL xStep and xFinal pointers (normally
|
| /sqlite-3.40.0/ext/wasm/api/ |
| H A D | sqlite3-api-glue.js | 367 xStep: {sig:'v(pip)', f:__xInverseAndStep}, property 393 xStep, //void (*xStep)(sqlite3_context*,int,sqlite3_value**) argument 404 const funcArgs = __xWrapFuncs({xFunc, xStep, xFinal, xDestroy}, 421 xFunc, xStep, xFinal argument 425 pApp, xFunc, xStep, xFinal, 0) 432 xStep, //void (*xStep)(sqlite3_context*,int,sqlite3_value**) argument 445 const funcArgs = __xWrapFuncs({xStep, xFinal, xValue, xInverse, xDestroy}, field
|
| H A D | sqlite3-api-oo1.js | 957 let xStep = opt.xStep || 0; 964 if(isFunc(xStep) || isFunc(xFinal)){ 967 xStep = xFinal = null; 968 }else if(isFunc(xStep)){ 1005 const xArity = xFunc || xStep; 1015 xStep, xFinal, xValue, xInverse, xDestroy); 1020 xFunc, xStep, xFinal, xDestroy);
|
| H A D | sqlite3-api-prologue.js | 538 xFunc, xStep, xFinal, xDestroy argument 546 xFunc, xStep, xFinal argument 557 xStep, xFinal, xValue, xInverse, xDestroy argument
|
| /sqlite-3.40.0/src/ |
| H A D | test_window.c | 26 Tcl_Obj *xStep; member 46 Tcl_Obj *pEval = Tcl_DuplicateObj(bInverse ? p->xInverse : p->xStep); in doTestWindowStep() 156 pNew->xStep = Tcl_DuplicateObj(objv[3]); in test_create_window() 162 Tcl_IncrRefCount(pNew->xStep); in test_create_window()
|
| H A D | main.c | 1820 void (*xStep)(sqlite3_context*,int,sqlite3_value **), in sqlite3CreateFunc() 1931 p->xSFunc = xSFunc ? xSFunc : xStep; in sqlite3CreateFunc() 1954 void (*xStep)(sqlite3_context*,int,sqlite3_value**), in createFunctionApi() 1981 xSFunc, xStep, xFinal, xValue, xInverse, pArg in createFunctionApi() 1984 assert( rc!=SQLITE_OK || (xStep==0 && xFinal==0) ); in createFunctionApi() 2005 void (*xStep)(sqlite3_context*,int,sqlite3_value **), in sqlite3_create_function() 2008 return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep, in sqlite3_create_function() 2018 void (*xStep)(sqlite3_context*,int,sqlite3_value **), in sqlite3_create_function_v2() 2031 void (*xStep)(sqlite3_context*,int,sqlite3_value **), in sqlite3_create_window_function() 2037 return createFunctionApi(db, zFunc, nArg, enc, p, 0, xStep, in sqlite3_create_window_function() [all …]
|
| H A D | sqlite3ext.h | 84 void (*xStep)(sqlite3_context*,int,sqlite3_value**), 88 void (*xStep)(sqlite3_context*,int,sqlite3_value**), 218 void (*xStep)(sqlite3_context*,int,sqlite3_value**), 315 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
|
| H A D | sqliteInt.h | 2026 #define WAGGREGATE(zName, nArg, arg, nc, xStep, xFinal, xValue, xInverse, f) \ argument 2028 SQLITE_INT_TO_PTR(arg), 0, xStep,xFinal,xValue,xInverse,#zName, {0}}
|
| H A D | sqlite.h.in | 5271 ** "sqlite3_create_function*" functions, xFunc, xStep and xFinal, are 5274 ** callback only; NULL pointers must be passed as the xStep and xFinal 5280 ** ^The sixth, seventh, eighth and ninth parameters (xStep, xFinal, xValue 5282 ** C-language callbacks that implement the new function. xStep and xFinal 5326 void (*xStep)(sqlite3_context*,int,sqlite3_value**), 5336 void (*xStep)(sqlite3_context*,int,sqlite3_value**), 5346 void (*xStep)(sqlite3_context*,int,sqlite3_value**), 5356 void (*xStep)(sqlite3_context*,int,sqlite3_value**), 5664 ** called once for each invocation of the xStep callback and then one 5666 ** an aggregate query, the xStep() callback of the aggregate function [all …]
|
| /sqlite-3.40.0/ext/wasm/ |
| H A D | tester1.js | 1414 xStep: (pCtx, n)=>{ method 1437 xStep: (pCtx, ...args)=>{ method 1454 xFunc: ()=>{}, xStep: ()=>{} method 1458 db.createFunction('nope',{xStep: ()=>{}}); method 1462 }, /Missing xStep/); 1484 xStep: (pCtx, n)=>{ method 1520 xStep: (pCtx, n)=>xStepInverse(pCtx, n),
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | geopoly.c | 1787 void (*xStep)(sqlite3_context*,int,sqlite3_value**); in sqlite3_geopoly_init() member 1808 0, aAgg[i].xStep, aAgg[i].xFinal); in sqlite3_geopoly_init()
|