Lines Matching refs:nested
9746 int vdbeExecCnt; /* Number of nested calls to VdbeExec() */
9798 int nStatement; /* Number of nested statement-transactions */
10804 ** For each nested loop in a WHERE clause implementation, the WhereInfo
10834 } *aInLoop; /* Information about each nested IN operator */
10878 int nLevel; /* Number of nested loop */
10897 ** NameContexts can be nested. When resolving names, the inner-most
11090 u8 nested; /* Number of nested calls to the parser/code generator */
48787 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
65985 ** ensure that statement-transactions are always nested, not overlapping.
67615 ** savepoints nested inside of the savepoint being operated on. */
81328 if( pParse->nested ) return;
81434 assert( pParse->nested<10 ); /* Nesting should only be of limited depth */
81441 pParse->nested++;
81448 pParse->nested--;
81892 if( !pParse->db->init.busy && pParse->nested==0
82042 if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
85529 ** part of a nested parse and writable_schema pragma has not
85538 && pParse->nested==0 )
85787 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
85881 int count = (pParse->nested==0); /* True to count changes */
85902 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
85910 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
89502 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
89989 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
89998 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
90421 if( pParse->nested ){
90434 if( !pParse->nested ){
100704 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
100985 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
100994 if( (db->flags&SQLITE_CountRows) && !pParse->pTriggerTab && !pParse->nested ){
106101 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
107068 ** The basic idea is to do a nested loop, one loop for each table in
107085 ** Note that the loops might not be nested in the order in which they
107088 ** the WHERE clause, it might result in additional nested loops for
107178 /* This function normally generates a nested loop for all tables in
107326 ** next nested loop. The loop tests all FROM clause entries
107334 ** were used as the innermost nested loop. In other words, a table
107588 ** loop below generates code for a single nested loop of the VM
110456 /* When doing a nested parse, one can include terms in an expression
110459 if( pParse->nested==0 ){
112020 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
112025 if( pParse->nested==0 ){
122388 int nNest; /* Number of nested brackets */