Lines Matching refs:pE

82119   Expr *pE           /* Expression we are trying to match */
82125 if( pE->op==TK_ID ){
82126 char *zCol = pE->u.zToken;
82158 Expr *pE /* The specific ORDER BY term */
82167 assert( sqlite3ExprIsInteger(pE, &i)==0 );
82181 rc = sqlite3ResolveExprNames(&nc, pE);
82190 if( sqlite3ExprCompare(pEList->a[i].pExpr, pE, -1)<2 ){
82262 Expr *pE, *pDup;
82264 pE = sqlite3ExprSkipCollate(pItem->pExpr);
82265 if( sqlite3ExprIsInteger(pE, &iCol) ){
82271 iCol = resolveAsName(pParse, pEList, pE);
82273 pDup = sqlite3ExprDup(db, pE, 0);
82288 if( pItem->pExpr==pE ){
82294 assert( pParent->pLeft==pE );
82297 sqlite3ExprDelete(db, pE);
82393 Expr *pE = pItem->pExpr;
82394 Expr *pE2 = sqlite3ExprSkipCollate(pE);
82420 if( sqlite3ResolveExprNames(pNC, pE) ){
82424 if( sqlite3ExprCompare(pE, pSelect->pEList->a[j].pExpr, -1)==0 ){
87046 Expr *pE = pTerm->pExpr;
87047 if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable &&
87048 pE->iColumn==pExpr->iColumn ){
110589 Expr *pE, *pRight, *pExpr;
110695 pE = pEList->a[k].pExpr;
110696 if( pE->op==TK_ALL ) break;
110697 assert( pE->op!=TK_DOT || pE->pRight!=0 );
110698 assert( pE->op!=TK_DOT || (pE->pLeft!=0 && pE->pLeft->op==TK_ID) );
110699 if( pE->op==TK_DOT && pE->pRight->op==TK_ALL ) break;
110721 pE = a[k].pExpr;
110722 pRight = pE->pRight;
110723 assert( pE->op!=TK_DOT || pRight!=0 );
110724 if( pE->op!=TK_ALL && (pE->op!=TK_DOT || pRight->op!=TK_ALL) ){
110740 if( pE->op==TK_DOT ){
110741 assert( pE->pLeft!=0 );
110742 assert( !ExprHasProperty(pE->pLeft, EP_IntValue) );
110743 zTName = pE->pLeft->u.zToken;
111020 Expr *pE = pFunc->pExpr;
111021 assert( !ExprHasProperty(pE, EP_xIsSelect) );
111022 if( pE->x.pList==0 || pE->x.pList->nExpr!=1 ){
111027 KeyInfo *pKeyInfo = keyInfoFromExprList(pParse, pE->x.pList, 0, 0);
120238 Expr *pE;
120249 pE = pTerm->pExpr;
120250 assert( pE!=0 );
120251 if( pLevel->iLeftJoin && !ExprHasProperty(pE, EP_FromJoin) ){
120259 sqlite3ExprIfFalse(pParse, pE, addrCont, SQLITE_JUMPIFNULL);
120273 Expr *pE, *pEAlt;
120279 pE = pTerm->pExpr;
120280 assert( !ExprHasProperty(pE, EP_FromJoin) );
120291 pEAlt->pLeft = pE->pLeft;
138595 Fts3Expr *pE = (p->eType==FTSQUERY_PHRASE?p:p->pRight);
138596 assert( pE->aMI==0 );
138597 pE->aMI = (u32 *)sqlite3_malloc(pTab->nColumn * 3 * sizeof(u32));
138598 if( !pE->aMI ) return SQLITE_NOMEM;
138599 memset(pE->aMI, 0, pTab->nColumn * 3 * sizeof(u32));
144632 Fts3HashElem *pE; /* Iterator variable */
144642 for(pE=fts3HashFirst(pHash); pE; pE=fts3HashNext(pE)){
144643 char *zKey = (char *)fts3HashKey(pE);
144644 int nKey = fts3HashKeysize(pE);
144660 aElem[nElem++] = pE;
144680 pE = fts3HashFindElem(pHash, zTerm, nTerm);
144681 if( pE ){
144682 aElem = &pE;