Lines Matching refs:nested
8389 int nStatement; /* Number of nested statement-transactions */
9364 ** For each nested loop in a WHERE clause implementation, the WhereInfo
9394 } *aInLoop; /* Information about each nested IN operator */
9437 int nLevel; /* Number of nested loop */
9451 ** NameContexts can be nested. When resolving names, the inner-most
9633 u8 nested; /* Number of nested calls to the parser/code generator */
37143 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
53535 ** ensure that statement-transactions are always nested, not overlapping.
55064 ** savepoints nested inside of the savepoint being operated on. */
66604 if( pParse->nested ) return;
66709 assert( pParse->nested<10 ); /* Nesting should only be of limited depth */
66716 pParse->nested++;
66723 pParse->nested--;
67161 if( !pParse->db->init.busy && pParse->nested==0
67306 if( !pParse->nested && strcmp(zName, "sqlite_sequence")==0 ){
70678 ** part of a nested parse and writable_schema pragma has not
70687 && pParse->nested==0 )
70937 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
71028 int count = (pParse->nested==0); /* True to count changes */
71049 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
71057 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
74523 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
75010 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
75019 if( (db->flags&SQLITE_CountRows) && !pParse->nested && !pParse->pTriggerTab ){
75427 if( pParse->nested ){
75440 if( !pParse->nested ){
85068 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
85346 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
85355 if( (db->flags&SQLITE_CountRows) && !pParse->pTriggerTab && !pParse->nested ){
89480 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
90218 ** The basic idea is to do a nested loop, one loop for each table in
90235 ** Note that the loops might not be nested in the order in which they
90238 ** the WHERE clause, it might result in additional nested loops for
90326 /* This function normally generates a nested loop for all tables in
90457 ** next nested loop. The FROM clause entries may be iterated through
90464 ** were used as the innermost nested loop. In other words, a table
90663 ** loop below generates code for a single nested loop of the VM
93489 /* When doing a nested parse, one can include terms in an expression
93492 if( pParse->nested==0 ){
95028 if( pParse->pVdbe && pParse->nErr>0 && pParse->nested==0 ){
95033 if( pParse->nested==0 ){
101255 int nNest; /* Number of nested brackets */