Home
last modified time | relevance | path

Searched refs:xValue (Results 1 – 13 of 13) sorted by relevance

/sqlite-3.40.0/src/
H A Dtest_window.c28 Tcl_Obj *xValue; member
78 Tcl_Obj *pEval = Tcl_DuplicateObj(bValue ? p->xValue : p->xFinal); in doTestWindowFinalize()
158 pNew->xValue = Tcl_DuplicateObj(objv[5]); in test_create_window()
164 Tcl_IncrRefCount(pNew->xValue); in test_create_window()
H A Dmain.c1822 void (*xValue)(sqlite3_context*), in sqlite3CreateFunc()
1830 assert( xValue==0 || xSFunc==0 ); in sqlite3CreateFunc()
1834 || ((xValue==0)!=(xInverse==0)) /* Both or neither of xValue, xInverse */ in sqlite3CreateFunc()
1869 pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor); in sqlite3CreateFunc()
1873 pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor); in sqlite3CreateFunc()
1933 p->xValue = xValue; in sqlite3CreateFunc()
1956 void (*xValue)(sqlite3_context*), in createFunctionApi()
1981 xSFunc, xStep, xFinal, xValue, xInverse, pArg in createFunctionApi()
2033 void (*xValue)(sqlite3_context*), in sqlite3_create_window_function()
2038 xFinal, xValue, xInverse, xDestroy); in sqlite3_create_window_function()
H A Dresolve.c1092 || (pDef->xValue==0 && pDef->xInverse==0) in resolveExprStep()
1093 || (pDef->xValue && pDef->xInverse && pDef->xSFunc && pDef->xFinalize) in resolveExprStep()
1095 if( pDef && pDef->xValue==0 && pWin ){ in resolveExprStep()
H A Dvdbemem.c491 assert( pFunc->xValue!=0 ); in sqlite3VdbeMemAggValue()
501 pFunc->xValue(&ctx); in sqlite3VdbeMemAggValue()
H A Dsqlite3ext.h317 void (*xValue)(sqlite3_context*),
H A DsqliteInt.h1836 void (*xValue)(sqlite3_context*); /* Current agg value */ member
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 Dpragma.c333 if( p->xValue!=0 ){ in pragmaFunclistLine()
H A Dsqlite.h.in5280 ** ^The sixth, seventh, eighth and ninth parameters (xStep, xFinal, xValue
5283 ** must both be non-NULL. xValue and xInverse may either both be NULL, in
5358 void (*xValue)(sqlite3_context*),
/sqlite-3.40.0/ext/wasm/api/
H A Dsqlite3-api-oo1.js959 const xValue = opt.xValue || 0;
979 if(isFunc(xValue) || isFunc(xInverse)){
982 }else if(isFunc(xValue)){
1015 xStep, xFinal, xValue, xInverse, xDestroy);
H A Dsqlite3-api-glue.js370 xValue: {sig:'v(p)', f:__xFinalAndValue}, property
434 xValue, //void (*xFinal)(sqlite3_context*) argument
445 const funcArgs = __xWrapFuncs({xStep, xFinal, xValue, xInverse, xDestroy},
H A Dsqlite3-api-prologue.js557 xStep, xFinal, xValue, xInverse, xDestroy argument
/sqlite-3.40.0/ext/session/
H A Dsqlite3session.c4128 int(*xValue)(sqlite3_changeset_iter *, int, sqlite3_value **), in sessionBindRow()
4140 assert( xValue==sqlite3changeset_old || xValue==sqlite3changeset_new ); in sessionBindRow()
4145 (void)xValue(pIter, i, &pVal); in sessionBindRow()
/sqlite-3.40.0/ext/wasm/
H A Dtester1.js1523 xValue: xValueFinal