Lines Matching refs:pBase
63585 sqlite3_pcache_page *pBase; local
63593 pBase = sqlite3PcacheFetch(pPager->pPCache, pgno, 3);
63594 if( pBase==0 ){
63596 rc = sqlite3PcacheFetchStress(pPager->pPCache, pgno, &pBase);
63598 if( pBase==0 ){
63603 pPg = *ppPage = sqlite3PcacheFetchFinish(pPager->pPCache, pgno, pBase);
150850 SrcItem *pBase, /* The base SrcItem. Looking at pBase[1] and following */
150855 pBase++;
150856 if( pBase->fg.isUsing==0 ) continue;
150857 if( NEVER(pBase->u3.pUsing==0) ) continue;
150858 if( sqlite3IdListIndex(pBase->u3.pUsing, zName)>=0 ) return 1;
153348 Expr *pBase = sqlite3ExprSkipCollateAndLikely(pX);
153349 while( ALWAYS(pBase!=0) && pBase->op==TK_IF_NULL_ROW ){
153350 pX = pBase->pLeft;
153351 pBase = sqlite3ExprSkipCollateAndLikely(pX);
153353 if( ALWAYS(pBase!=0)
153354 && pBase->op!=TK_AGG_COLUMN
153355 && pBase->op!=TK_REGISTER
163033 static void transferJoinMarkings(Expr *pDerived, Expr *pBase){
163034 if( pDerived && ExprHasProperty(pBase, EP_OuterON|EP_InnerON) ){
163035 pDerived->flags |= pBase->flags & (EP_OuterON|EP_InnerON);
163036 pDerived->w.iJoin = pBase->w.iJoin;
173408 Token *pBase
173413 if( pBase ){
173414 pWin->zBase = sqlite3DbStrNDup(pParse->db, pBase->z, pBase->n);