Lines Matching refs:pEq
127710 Expr *pEq; /* Expression (pLeft = pRight) */
127720 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight);
127721 pWhere = sqlite3ExprAnd(pParse, pWhere, pEq);
127747 Expr *pEq, *pAll = 0;
127754 pEq = sqlite3PExpr(pParse, TK_IS, pLeft, pRight);
127755 pAll = sqlite3ExprAnd(pParse, pAll, pEq);
128370 Expr *pEq; /* tFromCol = OLD.tToCol */
128384 pEq = sqlite3PExpr(pParse, TK_EQ,
128390 pWhere = sqlite3ExprAnd(pParse, pWhere, pEq);
128398 pEq = sqlite3PExpr(pParse, TK_IS,
128406 pWhen = sqlite3ExprAnd(pParse, pWhen, pEq);
138762 Expr *pEq; /* Equality constraint. pE1 == pE2 */
138812 pEq = sqlite3PExpr(pParse, TK_EQ, pE1, pE2);
138813 assert( pE2!=0 || pEq==0 );
138814 if( pEq ){
138815 ExprSetProperty(pEq, joinType);
138816 assert( !ExprHasProperty(pEq, EP_TokenOnly|EP_Reduced) );
138817 ExprSetVVAProperty(pEq, EP_NoReduce);
138818 pEq->w.iJoin = pE2->iTable;
138820 p->pWhere = sqlite3ExprAnd(pParse, p->pWhere, pEq);
244082 sqlite3_value *pEq = 0;
244089 if( idxNum & FTS5_VOCAB_TERM_EQ ) pEq = apVal[iVal++];
244093 if( pEq ){
244094 zTerm = (const char *)sqlite3_value_text(pEq);
244095 nTerm = sqlite3_value_bytes(pEq);