Home
last modified time | relevance | path

Searched refs:ExprAlwaysFalse (Results 1 – 3 of 3) sorted by relevance

/sqlite-3.40.0/src/
H A Dexpr.c1052 }else if( (ExprAlwaysFalse(pLeft) || ExprAlwaysFalse(pRight)) in sqlite3ExprAnd()
2143 if( ExprAlwaysTrue(pLeft) || ExprAlwaysFalse(pRight) ){ in sqlite3ExprSimplifiedAndOr()
2145 }else if( ExprAlwaysTrue(pRight) || ExprAlwaysFalse(pLeft) ){ in sqlite3ExprSimplifiedAndOr()
5310 }else if( ExprAlwaysFalse(pExpr) ){ in sqlite3ExprIfTrue()
5485 if( ExprAlwaysFalse(pExpr) ){ in sqlite3ExprIfFalse()
H A DsqliteInt.h2941 #define ExprAlwaysFalse(E) (((E)->flags&(EP_OuterON|EP_IsFalse))==EP_IsFalse) macro
H A Dselect.c6426 && ExprAlwaysFalse(pExpr)==0 in havingToWhereExprCb()