Lines Matching refs:isNot
111043 int isNot; /* IS NOT TRUE or IS NOT FALSE */
111046 isNot = pExpr->op2==TK_ISNOT;
111048 testcase( isTrue && isNot );
111049 testcase( !isTrue && isNot );
111050 if( isTrue ^ isNot ){
111052 isNot ? SQLITE_JUMPIFNULL : 0);
111055 isNot ? SQLITE_JUMPIFNULL : 0);
111217 int isNot; /* IS NOT TRUE or IS NOT FALSE */
111220 isNot = pExpr->op2==TK_ISNOT;
111222 testcase( isTrue && isNot );
111223 testcase( !isTrue && isNot );
111224 if( isTrue ^ isNot ){
111227 isNot ? 0 : SQLITE_JUMPIFNULL);
111232 isNot ? 0 : SQLITE_JUMPIFNULL);
186404 ** isNot:
186406 ** called, it sets ParseContext.isNot to true if the 'next node' is a
186408 ** FTS3 query "sqlite -mysql". Otherwise, ParseContext.isNot is set to
186419 int isNot; /* True if getNextNode() sees a unary - */
186546 pParse->isNot = 1;
186738 pParse->isNot = 0;
186956 && p->eType==FTSQUERY_PHRASE && pParse->isNot