Searched refs:SQLITE_JUMPIFNULL (Results 1 - 11 of 11) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dexpr.c2805 sqlite3ExprIfFalse(pParse, pTest, nextCase, SQLITE_JUMPIFNULL);
3155 ** take the jump if the jumpIfNull flag is SQLITE_JUMPIFNULL.
3170 assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
3179 sqlite3ExprIfFalse(pParse, pExpr->pLeft, d2,jumpIfNull^SQLITE_JUMPIFNULL);
3280 ** jump if jumpIfNull is SQLITE_JUMPIFNULL or fall through if jumpIfNull
3290 assert( jumpIfNull==SQLITE_JUMPIFNULL || jumpIfNull==0 );
3336 sqlite3ExprIfTrue(pParse, pExpr->pLeft, d2, jumpIfNull^SQLITE_JUMPIFNULL);
H A Danalyze.c254 sqlite3VdbeChangeP5(v, SQLITE_JUMPIFNULL);
H A Dinsert.c247 sqlite3VdbeChangeP5(v, SQLITE_JUMPIFNULL);
1218 sqlite3ExprIfTrue(pParse, pTab->pCheck, allOk, SQLITE_JUMPIFNULL);
H A Dtrigger.c874 sqlite3ExprIfFalse(pSubParse, pWhen, iEndTrigger, SQLITE_JUMPIFNULL);
H A Dwhere.c3783 sqlite3VdbeChangeP5(v, SQLITE_AFF_NUMERIC | SQLITE_JUMPIFNULL);
4206 sqlite3ExprIfFalse(pParse, pE, addrCont, SQLITE_JUMPIFNULL);
4227 sqlite3ExprIfFalse(pParse, pTerm->pExpr, addrCont, SQLITE_JUMPIFNULL);
4443 sqlite3ExprIfFalse(pParse, pWhere, pWInfo->iBreak, SQLITE_JUMPIFNULL);
H A DsqliteInt.h1184 #define SQLITE_JUMPIFNULL 0x08 /* jumps if either operand is NULL */ macro
H A Dselect.c4192 sqlite3ExprIfFalse(pParse, pHaving, addrOutputRow+1, SQLITE_JUMPIFNULL);
4324 sqlite3ExprIfFalse(pParse, pHaving, addrEnd, SQLITE_JUMPIFNULL);
H A Dvdbe.c1683 ** If the SQLITE_JUMPIFNULL bit of P5 is set and either reg(P1) or
1684 ** reg(P3) is NULL then take the jump. If the SQLITE_JUMPIFNULL
1777 ** The jump is taken if the SQLITE_JUMPIFNULL bit is set.
1783 }else if( pOp->p5 & SQLITE_JUMPIFNULL ){
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c9529 #define SQLITE_JUMPIFNULL 0x08 /* jumps if either operand is NULL */ macro
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c10851 #define SQLITE_JUMPIFNULL 0x08 /* jumps if either operand is NULL */ macro
[all...]
/external/sqlite/dist/
H A Dsqlite3.c10851 #define SQLITE_JUMPIFNULL 0x08 /* jumps if either operand is NULL */ macro
[all...]

Completed in 763 milliseconds