Lines Matching refs:pE
5730 Expr *pE, *pRight, *pExpr; in selectExpander() local
5864 pE = pEList->a[k].pExpr; in selectExpander()
5865 if( pE->op==TK_ASTERISK ) break; in selectExpander()
5866 assert( pE->op!=TK_DOT || pE->pRight!=0 ); in selectExpander()
5867 assert( pE->op!=TK_DOT || (pE->pLeft!=0 && pE->pLeft->op==TK_ID) ); in selectExpander()
5868 if( pE->op==TK_DOT && pE->pRight->op==TK_ASTERISK ) break; in selectExpander()
5869 elistFlags |= pE->flags; in selectExpander()
5884 pE = a[k].pExpr; in selectExpander()
5885 elistFlags |= pE->flags; in selectExpander()
5886 pRight = pE->pRight; in selectExpander()
5887 assert( pE->op!=TK_DOT || pRight!=0 ); in selectExpander()
5888 if( pE->op!=TK_ASTERISK in selectExpander()
5889 && (pE->op!=TK_DOT || pRight->op!=TK_ASTERISK) in selectExpander()
5905 if( pE->op==TK_DOT ){ in selectExpander()
5906 assert( pE->pLeft!=0 ); in selectExpander()
5907 assert( !ExprHasProperty(pE->pLeft, EP_IntValue) ); in selectExpander()
5908 zTName = pE->pLeft->u.zToken; in selectExpander()
6007 if( IN_RENAME_OBJECT && pE->pLeft ){ in selectExpander()
6008 sqlite3RenameTokenRemap(pParse, pLeft, pE->pLeft); in selectExpander()
6240 Expr *pE = pFunc->pFExpr; in resetAccumulator() local
6241 assert( ExprUseXList(pE) ); in resetAccumulator()
6242 if( pE->x.pList==0 || pE->x.pList->nExpr!=1 ){ in resetAccumulator()
6247 KeyInfo *pKeyInfo = sqlite3KeyInfoFromExprList(pParse, pE->x.pList,0,0); in resetAccumulator()