Lines Matching defs:pOne
155190 ** Subterms pOne and pTwo are contained within WHERE clause pWC. The
155212 WhereTerm *pOne, /* First disjunct */
155215 u16 eOp = pOne->eOperator | pTwo->eOperator;
155221 if( (pOne->wtFlags | pTwo->wtFlags) & TERM_VNULL ) return;
155222 if( (pOne->eOperator & (WO_EQ|WO_LT|WO_LE|WO_GT|WO_GE))==0 ) return;
155226 assert( pOne->pExpr->pLeft!=0 && pOne->pExpr->pRight!=0 );
155228 if( sqlite3ExprCompare(0,pOne->pExpr->pLeft, pTwo->pExpr->pLeft, -1) ) return;
155229 if( sqlite3ExprCompare(0,pOne->pExpr->pRight, pTwo->pExpr->pRight,-1) )return;
155240 pNew = sqlite3ExprDup(db, pOne->pExpr, 0);
155443 WhereTerm *pOne;
155444 while( (pOne = whereNthSubterm(&pOrWc->a[0],iOne++))!=0 ){
155448 whereCombineDisjuncts(pSrc, pWC, pOne, pTwo);