Home
last modified time | relevance | path

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

/sqlite-3.40.0/src/
H A Dtreeview.c565 sqlite3ExprTruthValue(pExpr) ? "TRUE" : "FALSE", zFlgs); in sqlite3TreeViewExpr()
637 x = (pExpr->op2==TK_ISNOT)*2 + sqlite3ExprTruthValue(pExpr->pRight); in sqlite3TreeViewExpr()
H A Dexpr.c2116 int sqlite3ExprTruthValue(const Expr *pExpr){ in sqlite3ExprTruthValue() function
4238 sqlite3VdbeAddOp2(v, OP_Integer, sqlite3ExprTruthValue(pExpr), target); in sqlite3ExprCodeTarget()
4413 isTrue = sqlite3ExprTruthValue(pExpr->pRight); in sqlite3ExprCodeTarget()
5234 isTrue = sqlite3ExprTruthValue(pExpr->pRight); in sqlite3ExprIfTrue()
5408 isTrue = sqlite3ExprTruthValue(pExpr->pRight); in sqlite3ExprIfFalse()
H A DsqliteInt.h4809 int sqlite3ExprTruthValue(const Expr*);
H A Dparse.y373 testcase( p->op==TK_TRUEFALSE && sqlite3ExprTruthValue(p) ); in id()
H A Dselect.c3832 pExpr->u.iValue = sqlite3ExprTruthValue(pExpr); in substExpr()