• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/iserver/sqlite-3.6.22/

Lines Matching refs:seen

7 ** of 5% are more are commonly seen when SQLite is compiled as a single
8281 ** within a trigger is not seen outside the trigger. Changes to views do not
8301 u8 mallocFailed; /* True if we have seen a malloc failure */
9451 u8 hasAgg; /* True if aggregates are seen */
9621 int nErr; /* Number of errors seen */
9665 int nVar; /* Number of '?' variables seen in the SQL so far */
13210 ** The minimum amount of free space that we have seen.
18749 ** Add the sign if we've seen at least one digit */
19404 ** But usually the problem will be seen. The result will be an
30068 unsigned int iMaxKey; /* Largest key seen since xTruncate() */
33349 ** the first journal header seen and continuing until the effective end
45125 ** Write the number of error seen in *pnErr. Except for some memory
45135 int *pnErr /* Write number of errors seen to this variable */
48199 int nSub = 0; /* Number of sub-vdbes seen so far */
48295 ** has not already been seen.
56870 ** seen. Reg(P1) is updated with the number of errors remaining.
58966 ** an abort request is seen.
59767 ** Return the number of errors seen.
59857 ** return non-zero. Return zero if no errors are seen.
60130 ** are seen.
67191 ** been seen on a column. This routine sets the notNull flag on
67939 ** of errors. If an error is seen leave an error message in pParse->zErrMsg.
68473 ** clause is seen as part of a foreign key definition. The isDeferred
69443 SrcList *p, /* The left part of the FROM clause already seen */
71548 int seen;
71602 seen = 0;
71612 if( c==']' ) seen = 1;
71618 if( c>=prior_c && c<=c2 ) seen = 1;
71622 seen = 1;
71628 if( c2==0 || (seen ^ invert)==0 ){
72155 u8 overflow; /* True if integer overflow seen */
79112 ** If an illegal or unsupported join type is seen, then still return
79462 ** seen combinations of the N values. A new entry is made in iTab
79573 ** and this row has been seen before, then do not make this row
88990 /* If this index is the best we have seen so far, then record this
90214 WhereCost bestPlan; /* Most efficient plan seen so far */
94005 ** they intend to abandon the parse upon the first syntax error seen.
94892 ** Whenever the CREATE TRIGGER keywords are seen, the statement
94897 ** (0) INVALID We have not yet seen a non-whitespace character.
94906 ** (3) EXPLAIN The keyword EXPLAIN has been seen at the beginning of
94909 ** (4) CREATE The keyword CREATE has been seen at the beginning of a
94916 ** (6) SEMI We've seen the first semicolon in the ";END;" that occurs at
94919 ** (7) END We've seen the ";END" of the ";END;" that occurs at the end
97593 int seen = 0;
97601 if( p2->xUnlockNotify==p->xUnlockNotify ) seen = 1;
97602 assert( p2->xUnlockNotify==p->xUnlockNotify || !seen );