Lines Matching defs:nested

17059   int nVdbeExec;                /* Number of nested calls to VdbeExec() */
17126 int nStatement; /* Number of nested statement-transactions */
18710 ** NameContexts can be nested. When resolving names, the inner-most
19113 u8 nested; /* Number of nested calls to the parser/code generator */
19174 Parse *pOuterParse; /* Outer Parse object when nested */
67918 int wantToLock; /* Number of nested calls to sqlite3BtreeEnter() */
94122 ** savepoints nested inside of the savepoint being operated on. */
104747 && pParse->nested==0
106898 && !pParse->nested
110661 if( !pParse->pTriggerTab && !pParse->nested ){
112529 ** nested SQL may raise an exception. */
117605 if( pParse->nested ) return;
117767 assert( pParse->nested<10 ); /* Nesting should only be of limited depth */
117779 pParse->nested++;
117787 pParse->nested--;
118538 if( (pParse->nested==0 && 0==sqlite3StrNICmp(zName, "sqlite_", 7))
120406 assert( !pParse->nested );
122798 assert( (errCode&0xff)==SQLITE_CONSTRAINT || pParse->nested );
123766 ** part of a nested parse and writable_schema pragma has not
123801 return sqlite3WritableSchema(db)==0 && pParse->nested==0;
124107 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
124137 && !pParse->nested
124334 int count = (pParse->nested==0); /* True to count changes */
124356 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
124534 if( pParse->nested==0 || 0==sqlite3_stricmp(pTab->zName, "sqlite_stat1") ){
129407 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
129640 && !pParse->nested
130015 if( pParse->nested==0 && pParse->pTriggerTab==0 ){
131202 if( pParse->nested ){
131215 if( !pParse->nested ){
137718 assert( pParse->nested==0 );
143615 ** Argument pWith (which may be NULL) points to a linked list of nested
144162 ExprList *pNestedFrom; /* Result-set of a nested FROM clause */
148442 if( pParse->nested==0 ) sqlite3VdbeCountChanges(v);
148507 && !pParse->nested
148574 if( !pParse->nested && !pTrigger && !hasFK && !chngKey && !bReplace ){
148913 if( !pParse->nested ){
148968 if( pParse->nested==0 && pParse->pTriggerTab==0 && pUpsert==0 ){
151365 ** This object contains information needed to implement a single nested
151375 ** nested loops as implemented). The order of WhereLevel objects determines
151376 ** the loop nested order, with WhereInfo.a[0] being the outer loop and
151409 } *aInLoop; /* Information about each nested IN operator */
151783 u8 nLevel; /* Number of nested loop */
152690 WhereLevel *pLevel, /* Which nested loop of the FROM we are coding */
162092 ** The basic idea is to do a nested loop, one loop for each table in
162109 ** Note that the loops might not be nested in the order in which they
162112 ** the WHERE clause, it might result in additional nested loops for
162222 /* This function normally generates a nested loop for all tables in
162705 ** loop below generates code for a single nested loop of the VM
170576 /* When doing a nested parse, one can include terms in an expression
170581 if( pParse->nested==0 ){
172910 int nParen; /* Number of nested levels of parentheses */
186421 int nNest; /* Number of nested brackets */