Searched refs:xFindFunction (Results 1 – 3 of 3) sorted by relevance
/third_party/sqlite/include/ |
D | sqlite3.h | 7001 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName, member
|
/third_party/chromium/patch/ |
D | 0003-3.2-Beta3-1115.patch | 91245 +** by the [xFindFunction|xFindFunction method] of the virtual table 106570 if( pMod->xFindFunction!=0 ){ 106571 i = pMod->xFindFunction(pVtab,2, pExpr->u.zToken, &xNotUsed, &pNotUsed); 116078 +** by the [xFindFunction|xFindFunction method] of the virtual table 128880 +** by the [xFindFunction|xFindFunction method] of the virtual table 144211 if( pMod->xFindFunction!=0 ){ 144212 i = pMod->xFindFunction(pVtab,2, pExpr->u.zToken, &xNotUsed, &pNotUsed); 154470 +** by the [xFindFunction|xFindFunction method] of the virtual table 174756 +** by the [xFindFunction|xFindFunction method] of the virtual table 184875 if( pMod->xFindFunction!=0 ){ [all …]
|
/third_party/sqlite/src/ |
D | sqlite3.c | 7314 int (*xFindFunction)(sqlite3_vtab *pVtab, int nArg, const char *zName, member 146236 if( pMod->xFindFunction==0 ) return pDef; 146254 rc = pMod->xFindFunction(pVtab, nArg, pDef->zName, &xSFunc, &pArg); 150015 if( pMod->xFindFunction!=0 ){ 150016 i = pMod->xFindFunction(pVtab,2, pExpr->u.zToken, &xNotUsed, &pNotUsed);
|