| /sqlite-3.40.0/ext/wasm/api/ |
| H A D | sqlite3-api-glue.js | 369 xFinal: {sig:'v(p)', f:__xFinalAndValue}, property 394 xFinal, //void (*xFinal)(sqlite3_context*) argument 404 const funcArgs = __xWrapFuncs({xFunc, xStep, xFinal, xDestroy}, 421 xFunc, xStep, xFinal argument 425 pApp, xFunc, xStep, xFinal, 0) 433 xFinal, //void (*xFinal)(sqlite3_context*) argument 445 const funcArgs = __xWrapFuncs({xStep, xFinal, xValue, xInverse, xDestroy},
|
| H A D | sqlite3-api-oo1.js | 958 let xFinal = opt.xFinal || 0; 964 if(isFunc(xStep) || isFunc(xFinal)){ 967 xStep = xFinal = null; 969 if(!isFunc(xFinal)){ 973 }else if(isFunc(xFinal)){ 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 | 27 Tcl_Obj *xFinal; member 78 Tcl_Obj *pEval = Tcl_DuplicateObj(bValue ? p->xValue : p->xFinal); in doTestWindowFinalize() 157 pNew->xFinal = Tcl_DuplicateObj(objv[4]); in test_create_window() 163 Tcl_IncrRefCount(pNew->xFinal); in test_create_window()
|
| H A D | main.c | 1821 void (*xFinal)(sqlite3_context*), in sqlite3CreateFunc() 1908 }else if( xSFunc==0 && xFinal==0 ){ in sqlite3CreateFunc() 1932 p->xFinalize = xFinal; in sqlite3CreateFunc() 1955 void (*xFinal)(sqlite3_context*), in createFunctionApi() 1981 xSFunc, xStep, xFinal, xValue, xInverse, pArg in createFunctionApi() 1984 assert( rc!=SQLITE_OK || (xStep==0 && xFinal==0) ); in createFunctionApi() 2006 void (*xFinal)(sqlite3_context*) in sqlite3_create_function() 2009 xFinal, 0, 0, 0); in sqlite3_create_function() 2019 void (*xFinal)(sqlite3_context*), in sqlite3_create_function_v2() 2032 void (*xFinal)(sqlite3_context*), in sqlite3_create_window_function() [all …]
|
| H A D | sqlite3ext.h | 85 void (*xFinal)(sqlite3_context*)); 89 void (*xFinal)(sqlite3_context*)); 219 void (*xFinal)(sqlite3_context*), 316 void (*xFinal)(sqlite3_context*),
|
| 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 5327 void (*xFinal)(sqlite3_context*) 5337 void (*xFinal)(sqlite3_context*) 5347 void (*xFinal)(sqlite3_context*), 5357 void (*xFinal)(sqlite3_context*), 5665 ** last time when the xFinal callback is invoked. ^(When no rows match 5667 ** implementation is never called and xFinal() is called exactly once. 5669 ** first time from within xFinal().)^ 5679 ** allocation.)^ Within the xFinal callback, it is customary to set [all …]
|
| /sqlite-3.40.0/ext/wasm/ |
| H A D | tester1.js | 1418 xFinal: (pCtx)=>{ method 1443 xFinal: (pCtx)=>{ method 1459 }, /Missing xFinal/); 1461 db.createFunction('nope',{xFinal: ()=>{}}); method 1488 xFinal: (pCtx)=>{ method 1522 xFinal: xValueFinal,
|
| /sqlite-3.40.0/test/ |
| H A D | func3.test | 201 # Test the outcome of specifying NULL xStep and xFinal pointers (normally
|
| /sqlite-3.40.0/ext/rtree/ |
| H A D | geopoly.c | 1788 void (*xFinal)(sqlite3_context*); in sqlite3_geopoly_init() member 1808 0, aAgg[i].xStep, aAgg[i].xFinal); in sqlite3_geopoly_init()
|