Lines Matching refs:isTrue
110222 int isTrue; /* IS TRUE or IS NOT TRUE */
110226 isTrue = sqlite3ExprTruthValue(pExpr->pRight);
110228 testcase( isTrue && bNormal);
110229 testcase( !isTrue && bNormal);
110230 sqlite3VdbeAddOp4Int(v, OP_IsTrue, r1, inReg, !isTrue, isTrue ^ bNormal);
111044 int isTrue; /* IS TRUE or IS NOT TRUE */
111047 isTrue = sqlite3ExprTruthValue(pExpr->pRight);
111048 testcase( isTrue && isNot );
111049 testcase( !isTrue && isNot );
111050 if( isTrue ^ isNot ){
111218 int isTrue; /* IS TRUE or IS NOT TRUE */
111221 isTrue = sqlite3ExprTruthValue(pExpr->pRight);
111222 testcase( isTrue && isNot );
111223 testcase( !isTrue && isNot );
111224 if( isTrue ^ isNot ){