Lines Matching refs:pOB
33876 Expr *pOB = pExpr->pLeft; in sqlite3TreeViewExpr() local
33877 assert( pOB->op==TK_ORDER ); in sqlite3TreeViewExpr()
33878 assert( ExprUseXList(pOB) ); in sqlite3TreeViewExpr()
33879 sqlite3TreeViewExprList(pView, pOB->x.pList, pWin!=0, "ORDERBY"); in sqlite3TreeViewExpr()
111563 Expr *pOB;
111588 pOB = sqlite3ExprAlloc(db, TK_ORDER, 0, 0);
111589 if( pOB==0 ){
111593 pOB->x.pList = pOrderBy;
111594 assert( ExprUseXList(pOB) );
111595 pExpr->pLeft = pOB;
111596 ExprSetProperty(pOB, EP_FullSize);
168034 ExprList *pOB;
168039 if( (pOB = pBuilder->pWInfo->pOrderBy)==0 ) return 0;
168040 for(ii=0; ii<pOB->nExpr; ii++){
168041 Expr *pExpr = sqlite3ExprSkipCollateAndLikely(pOB->a[ii].pExpr);