Lines Matching defs:nested
17687 int nVdbeExec; /* Number of nested calls to VdbeExec() */
17754 int nStatement; /* Number of nested statement-transactions */
19384 ** NameContexts can be nested. When resolving names, the inner-most
19409 u32 nNestedSelect; /* Number of nested selects using this NC */
19793 u8 nested; /* Number of nested calls to the parser/code generator */
19862 Parse *pOuterParse; /* Outer Parse object when nested */
65450 int nSehTry; /* Number of nested SEH_TRY{} blocks */
69864 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
96990 ** savepoints nested inside of the savepoint being operated on. */
107926 && pParse->nested==0
110186 && !pParse->nested
114310 if( !pParse->pTriggerTab && !pParse->nested ){
116345 ** nested SQL may raise an exception. */
121515 if( pParse->nested ) return;
121675 assert( pParse->nested<10 ); /* Nesting should only be of limited depth */
121687 pParse->nested++;
121695 pParse->nested--;
122433 if( (pParse->nested==0 && 0==sqlite3StrNICmp(zName, "sqlite_", 7))
124318 assert( !pParse->nested );
126713 assert( (errCode&0xff)==SQLITE_CONSTRAINT || pParse->nested );
127687 ** part of a nested parse and writable_schema pragma has not
127722 return sqlite3WritableSchema(db)==0 && pParse->nested==0;
128036 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
128066 && !pParse->nested
128264 int count = (pParse->nested==0); /* True to count changes */
128286 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
128464 if( pParse->nested==0 || 0==sqlite3_stricmp(pTab->zName, "sqlite_stat1") ){
133892 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
134140 && !pParse->nested
134515 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
135703 if( pParse->nested ){
135716 if( !pParse->nested ){
142385 assert( pParse->nested==0 );
148503 ** Argument pWith (which may be NULL) points to a linked list of nested
149056 ExprList *pNestedFrom; /* Result-set of a nested FROM clause */
153876 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
153941 && !pParse->nested
154005 ** (1) This is a nested UPDATE
154012 if( !pParse->nested
154362 if( !pParse->nested ){
154419 if( pParse->nested==0 && pParse->pTriggerTab==0 && pUpsert==0 ){
156849 ** This object contains information needed to implement a single nested
156859 ** nested loops as implemented). The order of WhereLevel objects determines
156860 ** the loop nested order, with WhereInfo.a[0] being the outer loop and
156893 } *aInLoop; /* Information about each nested IN operator */
157267 u8 nLevel; /* Number of nested loop */
158205 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
168265 ** The basic idea is to do a nested loop, one loop for each table in
168282 ** Note that the loops might not be nested in the order in which they
168285 ** the WHERE clause, it might result in additional nested loops for
168399 /* This function normally generates a nested loop for all tables in
168930 ** loop below generates code for a single nested loop of the VM
176863 /* When doing a nested parse, one can include terms in an expression
176868 if( pParse->nested==0 ){
179258 int nParen; /* Number of nested levels of parentheses */
193004 int nNest; /* Number of nested brackets */