Lines Matching refs:xStep
5775 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5785 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5795 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
5805 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
18088 #define WAGGREGATE(zName, nArg, arg, nc, xStep, xFinal, xValue, xInverse, f) \ argument
18090 SQLITE_INT_TO_PTR(arg), 0, xStep,xFinal,xValue,xInverse,#zName, {0}}
135556 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
135560 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
135690 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
135787 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
180044 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
180057 || ((xFinal==0)!=(xStep==0)) /* Both or neither of xFinal and xStep */
180093 pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor);
180097 pUserData, xSFunc, xStep, xFinal, xValue, xInverse, pDestructor);
180155 p->xSFunc = xSFunc ? xSFunc : xStep;
180178 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
180205 xSFunc, xStep, xFinal, xValue, xInverse, pArg
180208 assert( rc!=SQLITE_OK || (xStep==0 && xFinal==0) );
180229 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
180232 return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep,
180242 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
180246 return createFunctionApi(db, zFunc, nArg, enc, p, xSFunc, xStep,
180255 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
180261 return createFunctionApi(db, zFunc, nArg, enc, p, 0, xStep,
180273 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
180285 rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xSFunc,xStep,xFinal,0,0,0);
214605 void (*xStep)(sqlite3_context*,int,sqlite3_value**);
214626 0, aAgg[i].xStep, aAgg[i].xFinal);