Lines Matching defs:xFindFunction

7417   int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
7592 ** by the [xFindFunction|xFindFunction method] of the virtual table
7755 ** using the [xFindFunction] method of the [virtual table module].
12726 ** the sqlite3_module.xFindFunction() method.
137115 0, /* xFindFunction - function overloading */
151086 if( pMod->xFindFunction==0 ) return pDef;
151088 /* Call the xFindFunction method on the virtual table implementation
151091 ** Though undocumented, we have historically always invoked xFindFunction
151104 rc = pMod->xFindFunction(pVtab, nArg, pDef->zName, &xSFunc, &pArg);
155097 ** functions where xFindFunction returns a value of at least
155102 ** Historically, xFindFunction expected to see lower-case function
155103 ** names. But for this use case, xFindFunction is expected to deal
155119 if( pMod->xFindFunction!=0 ){
155120 i = pMod->xFindFunction(pVtab,2, pExpr->u.zToken, &xNotUsed, &pNotUsed);
175505 ** for name resolution but are actually overloaded by the xFindFunction
183471 ** This routine implements the xFindFunction method for the FTS3
183643 /* xFindFunction */ fts3FindFunctionMethod,
186303 0, /* xFindFunction */
189869 0, /* xFindFunction */
204445 0, /* xFindFunction - function overloading */
207107 geopolyFindFunction, /* xFindFunction - function overloading */
221387 ** the sqlite3_module.xFindFunction() method.
239349 ** This routine implements the xFindFunction method for the FTS3
239662 /* xFindFunction */ fts5FindFunctionMethod,
244245 /* xFindFunction */ 0,