Lines Matching refs:pE

1317   Expr *pE           /* Expression we are trying to match */  in resolveAsName()  argument
1323 if( pE->op==TK_ID ){ in resolveAsName()
1325 assert( !ExprHasProperty(pE, EP_IntValue) ); in resolveAsName()
1326 zCol = pE->u.zToken; in resolveAsName()
1359 Expr *pE /* The specific ORDER BY term */ in resolveOrderByTermToExprList() argument
1368 assert( sqlite3ExprIsInteger(pE, &i)==0 ); in resolveOrderByTermToExprList()
1382 rc = sqlite3ResolveExprNames(&nc, pE); in resolveOrderByTermToExprList()
1391 if( sqlite3ExprCompare(0, pEList->a[i].pExpr, pE, -1)<2 ){ in resolveOrderByTermToExprList()
1463 Expr *pE, *pDup; in resolveCompoundOrderBy() local
1465 pE = sqlite3ExprSkipCollateAndLikely(pItem->pExpr); in resolveCompoundOrderBy()
1466 if( NEVER(pE==0) ) continue; in resolveCompoundOrderBy()
1467 if( sqlite3ExprIsInteger(pE, &iCol) ){ in resolveCompoundOrderBy()
1469 resolveOutOfRangeError(pParse, "ORDER", i+1, pEList->nExpr, pE); in resolveCompoundOrderBy()
1473 iCol = resolveAsName(pParse, pEList, pE); in resolveCompoundOrderBy()
1486 pDup = sqlite3ExprDup(db, pE, 0); in resolveCompoundOrderBy()
1491 resolveOrderByTermToExprList(pParse, pSelect, pE); in resolveCompoundOrderBy()
1505 if( pItem->pExpr==pE ){ in resolveCompoundOrderBy()
1511 assert( pParent->pLeft==pE ); in resolveCompoundOrderBy()
1514 sqlite3ExprDelete(db, pE); in resolveCompoundOrderBy()
1638 Expr *pE = pItem->pExpr; in resolveOrderGroupBy() local
1639 Expr *pE2 = sqlite3ExprSkipCollateAndLikely(pE); in resolveOrderGroupBy()
1666 if( sqlite3ResolveExprNames(pNC, pE) ){ in resolveOrderGroupBy()
1670 if( sqlite3ExprCompare(0, pE, pSelect->pEList->a[j].pExpr, -1)==0 ){ in resolveOrderGroupBy()
1674 windowRemoveExprFromSelect(pSelect, pE); in resolveOrderGroupBy()