Lines Matching defs:xFindFunction

7650   int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName,
7829 ** by the [xFindFunction|xFindFunction method] of the virtual table
7992 ** using the [xFindFunction] method of the [virtual table module].
13145 ** the sqlite3_module.xFindFunction() method.
141774 0, /* xFindFunction - function overloading */
156566 if( pMod->xFindFunction==0 ) return pDef;
156568 /* Call the xFindFunction method on the virtual table implementation
156571 ** Though undocumented, we have historically always invoked xFindFunction
156584 rc = pMod->xFindFunction(pVtab, nArg, pDef->zName, &xSFunc, &pArg);
160641 ** functions where xFindFunction returns a value of at least
160646 ** Historically, xFindFunction expected to see lower-case function
160647 ** names. But for this use case, xFindFunction is expected to deal
160663 if( pMod->xFindFunction!=0 ){
160664 i = pMod->xFindFunction(pVtab,2, pExpr->u.zToken, &xNotUsed, &pNotUsed);
181915 ** for name resolution but are actually overloaded by the xFindFunction
189981 ** This routine implements the xFindFunction method for the FTS3
190208 /* xFindFunction */ fts3FindFunctionMethod,
192885 0, /* xFindFunction */
196452 0, /* xFindFunction */
213681 0, /* xFindFunction - function overloading */
216382 geopolyFindFunction, /* xFindFunction - function overloading */
231454 ** the sqlite3_module.xFindFunction() method.
249569 0, /* xFindFunction */
252244 ** This routine implements the xFindFunction method for the FTS3
252616 /* xFindFunction */ fts5FindFunctionMethod,
257309 /* xFindFunction */ 0,