Lines Matching refs:pEq
131994 Expr *pEq; /* Expression (pLeft = pRight) */
132004 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight);
132005 pWhere = sqlite3ExprAnd(pParse, pWhere, pEq);
132031 Expr *pEq, *pAll = 0;
132038 pEq = sqlite3PExpr(pParse, TK_IS, pLeft, pRight);
132039 pAll = sqlite3ExprAnd(pParse, pAll, pEq);
132662 Expr *pEq; /* tFromCol = OLD.tToCol */
132676 pEq = sqlite3PExpr(pParse, TK_EQ,
132682 pWhere = sqlite3ExprAnd(pParse, pWhere, pEq);
132690 pEq = sqlite3PExpr(pParse, TK_IS,
132698 pWhen = sqlite3ExprAnd(pParse, pWhen, pEq);
143451 Expr *pEq; /* Equality constraint. pE1 == pE2 */
143501 pEq = sqlite3PExpr(pParse, TK_EQ, pE1, pE2);
143502 assert( pE2!=0 || pEq==0 );
143503 if( pEq ){
143504 ExprSetProperty(pEq, joinType);
143505 assert( !ExprHasProperty(pEq, EP_TokenOnly|EP_Reduced) );
143506 ExprSetVVAProperty(pEq, EP_NoReduce);
143507 pEq->w.iJoin = pE2->iTable;
143509 p->pWhere = sqlite3ExprAnd(pParse, p->pWhere, pEq);
257146 sqlite3_value *pEq = 0;
257153 if( idxNum & FTS5_VOCAB_TERM_EQ ) pEq = apVal[iVal++];
257157 if( pEq ){
257158 zTerm = (const char *)sqlite3_value_text(pEq);
257159 nTerm = sqlite3_value_bytes(pEq);