Lines Matching refs:xStep
4267 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4277 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
4287 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
9632 void (*xStep)(sqlite3_context*,int,sqlite3_value**); /* Aggregate step */ member
9703 #define AGGREGATE(zName, nArg, arg, nc, xStep, xFinal) \ argument
9705 SQLITE_INT_TO_PTR(arg), 0, 0, xStep,xFinal,#zName,0,0}
62114 assert( p && p->pFunc && p->pFunc->xStep );
62205 assert( p && p->pMem && p->pFunc && p->pFunc->xStep );
68980 (u.ce.ctx.pFunc->xStep)(&u.ce.ctx, u.ce.n, u.ce.apVal); /* IMP: R-24505-23230 */
83183 || (nArg==-1 && (p->xFunc!=0 || p->xStep!=0))
83333 if( pBest && (pBest->xStep || pBest->xFunc || createFlag) ){
88972 …,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,…
88973 …,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,…
89093 …,int,int,void*,void (*xFunc)(sqlite3_context*,int,sqlite3_value**),void (*xStep)(sqlite3_context*,…
111181 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
111190 (xFunc && (xFinal || xStep)) ||
111191 (!xFunc && (xFinal && !xStep)) ||
111192 (!xFunc && (!xFinal && xStep)) ||
111211 pUserData, xFunc, xStep, xFinal, pDestructor);
111214 pUserData, xFunc, xStep, xFinal, pDestructor);
111258 p->xStep = xStep;
111275 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
111278 return sqlite3_create_function_v2(db, zFunc, nArg, enc, p, xFunc, xStep,
111289 void (*xStep)(sqlite3_context*,int,sqlite3_value **),
111305 rc = sqlite3CreateFunc(db, zFunc, nArg, enc, p, xFunc, xStep, xFinal, pArg);
111326 void (*xStep)(sqlite3_context*,int,sqlite3_value**),
111334 rc = sqlite3CreateFunc(db, zFunc8, nArg, eTextRep, p, xFunc, xStep, xFinal,0);