Lines Matching refs:pE1
92903 SQLITE_PRIVATE int sqlite3ExprCollSeqMatch(Parse *pParse, Expr *pE1, Expr *pE2){
92904 CollSeq *pColl1 = sqlite3ExprNNCollSeq(pParse, pE1);
97586 SQLITE_PRIVATE int sqlite3ExprImpliesExpr(Parse *pParse, Expr *pE1, Expr *pE2, int iTab){
97587 if( sqlite3ExprCompare(pParse, pE1, pE2, iTab)==0 ){
97591 && (sqlite3ExprImpliesExpr(pParse, pE1, pE2->pLeft, iTab)
97592 || sqlite3ExprImpliesExpr(pParse, pE1, pE2->pRight, iTab) )
97596 if( pE2->op==TK_NOTNULL && pE1->op!=TK_ISNULL && pE1->op!=TK_IS ){
97597 Expr *pX = sqlite3ExprSkipCollate(pE1->pLeft);
97598 testcase( pX!=pE1->pLeft );
119007 Expr *pE1;
119016 pE1 = sqlite3CreateColumnExpr(db, pSrc, iLeft, iColLeft);
119019 pEq = sqlite3PExpr(pParse, TK_EQ, pE1, pE2);