Home | History | Annotate | Download | only in dist

Lines Matching defs:isTrue

38995     /*  93 */ "IsTrue"           OpHelp("r[P2] = coalesce(r[P1]==TRUE,P3) ^ P4"),
99064 /* Opcode: IsTrue P1 P2 P3 P4 *
117932 int isTrue; /* IS TRUE or IS NOT TRUE */
117936 isTrue = sqlite3ExprTruthValue(pExpr->pRight);
117938 testcase( isTrue && bNormal);
117939 testcase( !isTrue && bNormal);
117940 sqlite3VdbeAddOp4Int(v, OP_IsTrue, r1, inReg, !isTrue, isTrue ^ bNormal);
118794 int isTrue; /* IS TRUE or IS NOT TRUE */
118797 isTrue = sqlite3ExprTruthValue(pExpr->pRight);
118798 testcase( isTrue && isNot );
118799 testcase( !isTrue && isNot );
118800 if( isTrue ^ isNot ){
118991 int isTrue; /* IS TRUE or IS NOT TRUE */
118994 isTrue = sqlite3ExprTruthValue(pExpr->pRight);
118995 testcase( isTrue && isNot );
118996 testcase( !isTrue && isNot );
118997 if( isTrue ^ isNot ){