Lines Matching refs:pE1
92919 SQLITE_PRIVATE int sqlite3ExprCollSeqMatch(Parse *pParse, Expr *pE1, Expr *pE2){
92920 CollSeq *pColl1 = sqlite3ExprNNCollSeq(pParse, pE1);
97602 SQLITE_PRIVATE int sqlite3ExprImpliesExpr(Parse *pParse, Expr *pE1, Expr *pE2, int iTab){
97603 if( sqlite3ExprCompare(pParse, pE1, pE2, iTab)==0 ){
97607 && (sqlite3ExprImpliesExpr(pParse, pE1, pE2->pLeft, iTab)
97608 || sqlite3ExprImpliesExpr(pParse, pE1, pE2->pRight, iTab) )
97612 if( pE2->op==TK_NOTNULL && pE1->op!=TK_ISNULL && pE1->op!=TK_IS ){
97613 Expr *pX = sqlite3ExprSkipCollate(pE1->pLeft);
97614 testcase( pX!=pE1->pLeft );
119023 Expr *pE1;
119032 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iColLeft);
119035 pEq = sqlite3PExpr(pParse, TK_EQ, pE1, pE2);