Lines Matching refs:nested
8394 int nStatement; /* Number of nested statement-transactions */
9369 ** For each nested loop in a WHERE clause implementation, the WhereInfo
9399 } *aInLoop; /* Information about each nested IN operator */
9442 int nLevel; /* Number of nested loop */
9456 ** NameContexts can be nested. When resolving names, the inner-most
9638 u8 nested; /* Number of nested calls to the parser/code generator */
37148 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
53546 ** ensure that statement-transactions are always nested, not overlapping.
55075 ** savepoints nested inside of the savepoint being operated on. */
66615 if( pParse->nested ) return;
66720 assert( pParse->nested<10 ); /* Nesting should only be of limited depth */
66727 pParse->nested++;
66734 pParse->nested--;
67172 if( !pParse->db->init.busy && pParse->nested==0
67317 if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
70689 ** part of a nested parse and writable_schema pragma has not
70698 && pParse->nested==0 )
70948 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
71039 int count = (pParse->nested==0); /* True to count changes */
71060 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
71068 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
74534 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
75021 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
75030 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
75438 if( pParse->nested ){
75451 if( !pParse->nested ){
85079 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
85357 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
85366 if( (db->flags&SQLITE_CountRows) && !pParse->pTriggerTab && !pParse->nested ){
89491 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
90229 ** The basic idea is to do a nested loop, one loop for each table in
90246 ** Note that the loops might not be nested in the order in which they
90249 ** the WHERE clause, it might result in additional nested loops for
90337 /* This function normally generates a nested loop for all tables in
90468 ** next nested loop. The FROM clause entries may be iterated through
90475 ** were used as the innermost nested loop. In other words, a table
90674 ** loop below generates code for a single nested loop of the VM
93500 /* When doing a nested parse, one can include terms in an expression
93503 if( pParse->nested==0 ){
95039 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
95044 if( pParse->nested==0 ){
101295 int nNest; /* Number of nested brackets */