Lines Matching refs:pE

82137   Expr *pE           /* Expression we are trying to match */
82143 if( pE->op==TK_ID ){
82144 char *zCol = pE->u.zToken;
82176 Expr *pE /* The specific ORDER BY term */
82185 assert( sqlite3ExprIsInteger(pE, &i)==0 );
82199 rc = sqlite3ResolveExprNames(&nc, pE);
82208 if( sqlite3ExprCompare(pEList->a[i].pExpr, pE, -1)<2 ){
82280 Expr *pE, *pDup;
82282 pE = sqlite3ExprSkipCollate(pItem->pExpr);
82283 if( sqlite3ExprIsInteger(pE, &iCol) ){
82289 iCol = resolveAsName(pParse, pEList, pE);
82291 pDup = sqlite3ExprDup(db, pE, 0);
82306 if( pItem->pExpr==pE ){
82312 assert( pParent->pLeft==pE );
82315 sqlite3ExprDelete(db, pE);
82411 Expr *pE = pItem->pExpr;
82412 Expr *pE2 = sqlite3ExprSkipCollate(pE);
82438 if( sqlite3ResolveExprNames(pNC, pE) ){
82442 if( sqlite3ExprCompare(pE, pSelect->pEList->a[j].pExpr, -1)==0 ){
87064 Expr *pE = pTerm->pExpr;
87065 if( pE->op==TK_COLUMN && pE->iTable==pExpr->iTable &&
87066 pE->iColumn==pExpr->iColumn ){
110607 Expr *pE, *pRight, *pExpr;
110713 pE = pEList->a[k].pExpr;
110714 if( pE->op==TK_ALL ) break;
110715 assert( pE->op!=TK_DOT || pE->pRight!=0 );
110716 assert( pE->op!=TK_DOT || (pE->pLeft!=0 && pE->pLeft->op==TK_ID) );
110717 if( pE->op==TK_DOT && pE->pRight->op==TK_ALL ) break;
110739 pE = a[k].pExpr;
110740 pRight = pE->pRight;
110741 assert( pE->op!=TK_DOT || pRight!=0 );
110742 if( pE->op!=TK_ALL && (pE->op!=TK_DOT || pRight->op!=TK_ALL) ){
110758 if( pE->op==TK_DOT ){
110759 assert( pE->pLeft!=0 );
110760 assert( !ExprHasProperty(pE->pLeft, EP_IntValue) );
110761 zTName = pE->pLeft->u.zToken;
111038 Expr *pE = pFunc->pExpr;
111039 assert( !ExprHasProperty(pE, EP_xIsSelect) );
111040 if( pE->x.pList==0 || pE->x.pList->nExpr!=1 ){
111045 KeyInfo *pKeyInfo = keyInfoFromExprList(pParse, pE->x.pList, 0, 0);
120256 Expr *pE;
120267 pE = pTerm->pExpr;
120268 assert( pE!=0 );
120269 if( pLevel->iLeftJoin && !ExprHasProperty(pE, EP_FromJoin) ){
120277 sqlite3ExprIfFalse(pParse, pE, addrCont, SQLITE_JUMPIFNULL);
120291 Expr *pE, *pEAlt;
120297 pE = pTerm->pExpr;
120298 assert( !ExprHasProperty(pE, EP_FromJoin) );
120309 pEAlt->pLeft = pE->pLeft;
138625 Fts3Expr *pE = (p->eType==FTSQUERY_PHRASE?p:p->pRight);
138626 assert( pE->aMI==0 );
138627 pE->aMI = (u32 *)sqlite3_malloc(pTab->nColumn * 3 * sizeof(u32));
138628 if( !pE->aMI ) return SQLITE_NOMEM;
138629 memset(pE->aMI, 0, pTab->nColumn * 3 * sizeof(u32));
144662 Fts3HashElem *pE; /* Iterator variable */
144672 for(pE=fts3HashFirst(pHash); pE; pE=fts3HashNext(pE)){
144673 char *zKey = (char *)fts3HashKey(pE);
144674 int nKey = fts3HashKeysize(pE);
144690 aElem[nElem++] = pE;
144710 pE = fts3HashFindElem(pHash, zTerm, nTerm);
144711 if( pE ){
144712 aElem = &pE;