Home
last modified time | relevance | path

Searched refs:pEq (Results 1 – 5 of 5) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
Dfkey.c492 Expr *pEq; /* Expression (pLeft = pRight) */ in fkScanChildren() local
517 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0); in fkScanChildren()
518 pWhere = sqlite3ExprAnd(db, pWhere, pEq); in fkScanChildren()
526 Expr *pEq; /* Expression (pLeft = pRight) */ in fkScanChildren() local
537 pEq = sqlite3PExpr(pParse, TK_NE, pLeft, pRight, 0); in fkScanChildren()
538 pWhere = sqlite3ExprAnd(db, pWhere, pEq); in fkScanChildren()
976 Expr *pEq; /* tFromCol = OLD.tToCol */ in fkActionTrigger() local
990 pEq = sqlite3PExpr(pParse, TK_EQ, in fkActionTrigger()
997 pWhere = sqlite3ExprAnd(db, pWhere, pEq); in fkActionTrigger()
1005 pEq = sqlite3PExpr(pParse, TK_IS, in fkActionTrigger()
[all …]
Dselect.c249 Expr *pEq; in addWhereTerm() local
259 pEq = sqlite3PExpr(pParse, TK_EQ, pE1, pE2, 0); in addWhereTerm()
260 if( pEq && isOuterJoin ){ in addWhereTerm()
261 ExprSetProperty(pEq, EP_FromJoin); in addWhereTerm()
262 assert( !ExprHasAnyProperty(pEq, EP_TokenOnly|EP_Reduced) ); in addWhereTerm()
263 ExprSetIrreducible(pEq); in addWhereTerm()
264 pEq->iRightJoinTable = (i16)pE2->iTable; in addWhereTerm()
266 *ppWhere = sqlite3ExprAnd(db, *ppWhere, pEq); in addWhereTerm()
/external/chromium_org/third_party/sqlite/amalgamation/
Dsqlite3.c83784 Expr *pEq; /* Expression (pLeft = pRight) */
83809 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0);
83810 pWhere = sqlite3ExprAnd(db, pWhere, pEq);
83818 Expr *pEq; /* Expression (pLeft = pRight) */
83829 pEq = sqlite3PExpr(pParse, TK_NE, pLeft, pRight, 0);
83830 pWhere = sqlite3ExprAnd(db, pWhere, pEq);
84268 Expr *pEq; /* tFromCol = OLD.tToCol */
84282 pEq = sqlite3PExpr(pParse, TK_EQ,
84289 pWhere = sqlite3ExprAnd(db, pWhere, pEq);
84297 pEq = sqlite3PExpr(pParse, TK_IS,
[all …]
/external/sqlite/dist/
Dsqlite3.c94040 Expr *pEq; /* Expression (pLeft = pRight) */
94050 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0);
94051 pWhere = sqlite3ExprAnd(db, pWhere, pEq);
94074 Expr *pEq, *pAll = 0;
94081 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0);
94082 pAll = sqlite3ExprAnd(db, pAll, pEq);
94613 Expr *pEq; /* tFromCol = OLD.tToCol */
94627 pEq = sqlite3PExpr(pParse, TK_EQ,
94634 pWhere = sqlite3ExprAnd(db, pWhere, pEq);
94642 pEq = sqlite3PExpr(pParse, TK_IS,
[all …]
/external/sqlite/dist/orig/
Dsqlite3.c94020 Expr *pEq; /* Expression (pLeft = pRight) */
94030 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0);
94031 pWhere = sqlite3ExprAnd(db, pWhere, pEq);
94054 Expr *pEq, *pAll = 0;
94061 pEq = sqlite3PExpr(pParse, TK_EQ, pLeft, pRight, 0);
94062 pAll = sqlite3ExprAnd(db, pAll, pEq);
94593 Expr *pEq; /* tFromCol = OLD.tToCol */
94607 pEq = sqlite3PExpr(pParse, TK_EQ,
94614 pWhere = sqlite3ExprAnd(db, pWhere, pEq);
94622 pEq = sqlite3PExpr(pParse, TK_IS,
[all …]