Searched refs:MEM_Null (Results 1 - 9 of 9) sorted by relevance

/external/chromium_org/third_party/sqlite/src/src/
H A Dvdbemem.c106 pMem->flags = MEM_Null;
197 ** A MEM_Null value will never be passed to this function. This function is
251 assert( (pMem->flags & MEM_Null)!=0 || pFunc==pMem->u.pDef );
254 ctx.s.flags = MEM_Null;
469 if( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))==0 ){
480 assert( (pMem->flags & (MEM_Int|MEM_Real|MEM_Null))!=0 );
497 MemSetTypeFlag(pMem, MEM_Null);
562 pMem->flags = MEM_Null;
668 pFrom->flags = MEM_Null;
791 if( combined_flags&MEM_Null ){
[all...]
H A Dvdbe.c168 if( flags & MEM_Null ){
424 if( p->flags & MEM_Null ){
805 if( (pIn3->flags & MEM_Null)==0 ) break;
960 pOut->flags = MEM_Null;
1166 if( (pIn1->flags | pIn2->flags) & MEM_Null ){
1244 if( (flags & MEM_Null)!=0 ) goto arithmetic_result_is_null;
1377 ctx.s.flags = MEM_Null;
1387 MemSetTypeFlag(&ctx.s, MEM_Null);
1480 if( (pIn1->flags | pIn2->flags) & MEM_Null ){
1590 if( pIn1->flags & MEM_Null ) brea
[all...]
H A Dvdbetrace.c117 if( pVar->flags & MEM_Null ){
H A Dvdbeapi.c126 p->aVar[i].flags = MEM_Null;
289 if( pCtx->s.flags & MEM_Null ){
569 pMem->flags = MEM_Null;
707 = {0, "", (double)0, {0}, 0, MEM_Null, SQLITE_NULL, 0,
1001 pVar->flags = MEM_Null;
H A Dvdbeaux.c910 assert( (pMem->flags & MEM_Null)==0 );
1087 p->flags = MEM_Null;
1293 pMem->flags = MEM_Null; /* Comment */
1491 p->aVar[n].flags = MEM_Null;
1499 p->aMem[n].flags = MEM_Null;
1627 for(i=1; i<=p->nMem; i++) assert( p->aMem==0 || p->aMem[i].flags==MEM_Null );
1653 pColName->flags = MEM_Null;
2527 if( flags&MEM_Null ){
2706 pMem->flags = MEM_Null;
2764 pMem->flags = sqlite3IsNaN(pMem->r) ? MEM_Null
[all...]
H A DvdbeInt.h149 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
163 ** If the MEM_Null flag is set, then the value is an SQL NULL value.
172 #define MEM_Null 0x0001 /* Value is NULL */ macro
/external/chromium_org/third_party/sqlite/amalgamation/
H A Dsqlite3.c12363 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
12377 ** If the MEM_Null flag is set, then the value is an SQL NULL value.
12386 #define MEM_Null 0x0001 /* Value is NULL */ macro
[all...]
/external/sqlite/dist/orig/
H A Dsqlite3.c14033 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
14046 ** If the MEM_Null flag is set, then the value is an SQL NULL value.
14055 #define MEM_Null 0x0001 /* Value is NULL */ macro
[all...]
/external/sqlite/dist/
H A Dsqlite3.c14033 u16 flags; /* Some combination of MEM_Null, MEM_Str, MEM_Dyn, etc. */
14046 ** If the MEM_Null flag is set, then the value is an SQL NULL value.
14055 #define MEM_Null 0x0001 /* Value is NULL */ macro
[all...]

Completed in 2953 milliseconds