• 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:form

2003 ** currently entered text seems to form a complete SQL statement or
2373 ** routines, which form the built-in memory allocation subsystem.
3141 ** form "?", "?NNN", ":AAA", "$AAA", or "@AAA" that serve as
3147 ** number of unique parameters. If parameters of the ?NNN form are used,
3161 ** ^(SQL parameters of the form "?NNN" or ":AAA" or "@AAA" or "$AAA"
3166 ** ^Parameters of the form "?" without a following integer have no name
3437 ** These routines form the "result set" interface.
4172 ** or [SQLITE_UTF16LE], indicating the most desirable form of the collation
4717 ** ^(The aConstraint[] array records WHERE clause constraints of the form:
4727 ** ^The optimizer automatically inverts terms of the form "expr OP column"
4729 ** get as many WHERE clause terms into the form shown above as possible.
5481 ** are of the form [SQLITE_STATUS_MEMORY_USED | SQLITE_STATUS_...].)^
9051 ** a CASE expression or an IN expression of the form "<lhs> IN (<y>, <z>...)".
9053 ** the form "<lhs> IN (SELECT ...)". If the EP_xIsSelect bit is set in the
9057 ** An expression of the form ID or ID.ID refers to a column in a table.
9723 * 2. All triggers associated with a single table form a linked list, using the
10306 ** the MACRO form does).
11064 ** The extension is of the form:
11107 ** Parse times of the form HH:MM or HH:MM:SS or HH:MM:SS.FFFF.
11190 ** Parse dates of the form
11254 ** In the first form, the +/-HH:MM is always optional. The fractional
11555 /* A modifier of the form (+|-)HH:MM:SS.FFF adds (or subtracts) the
13162 ** The second block of free chunks is of the form u.list. The
13163 ** two fields form a double-linked list of chunks of related sizes.
19367 ** Convert a BLOB literal of the form "x'hhhhhh'" into its binary
20800 ** Here ends the I/O methods that form the sqlite3_io_methods object.
21964 ** Simplify a filename into its canonical form
24224 ** any any form by default, we will not attempt to define _XOPEN_SOURCE.
28269 ** Here ends the I/O methods that form the sqlite3_io_methods object.
28275 ** Convert a UTF-8 filename into whatever form the underlying
32718 ** restore the database to its original form. Two conditions must be
36619 ** key and data for any entry are combined to form the "payload". A
36623 ** and the preceding pointer are combined to form a "Cell". Each
36779 ** Overflow pages form a linked list. Each page except the last is completely
51533 ** Return a pointer to a string in memory obtained form sqlite3DbMalloc() which
51654 ** similar in form to assembly language. The program consists of
52838 ** case statement is followed by a comment of the form "/# same as ... #/"
55542 ** P4>0 then register P3 is the first of P4 registers that form an unpacked
55552 ** P4>0 then register P3 is the first of P4 registers that form an unpacked
55829 /* Some compilers complain about constants of the form 0x7fffffffffffffff.
56459 ** The content of P3 registers starting at register P2 form
56531 ** The P4 register values beginning with P3 form an unpacked index
56545 ** The P4 register values beginning with P3 form an unpacked index
59144 ** Given the name of a column of the form X.Y.Z or Y.Z or just Z, look up
59161 ** NULL meaning that name is of the form Y.Z or Z. Any available database
59164 ** means that the form of the name is Z and that columns from any table
59331 ** If the input is of the form Z (not Y.Z or X.Y.Z) then the name Z
60133 ** form X.Y.Z or Y.Z or just Z where
60152 ** form Z (with no X and Y prefix) where the Z matches the right-hand
60606 ** appear to be quoted. If the quotes were of the form "..." (double-quotes)
60769 ** Wildcards of the form "?nnn" are assigned the number "nnn". We make
60773 ** Wildcards of the form ":aaa", "@aaa", or "$aaa" are assigned the same number
60788 /* Wildcard of the form "?". Assign the next variable number */
60792 /* Wildcard of the form "?nnn". Convert "nnn" to an integer and
61568 ** query of the form
61625 ** form:
61780 ** to be of the form "<rowid> IN (?, ?, ?)", where <rowid> is a reference
62625 /* Expressions of the form: CAST(pLeft AS token) */
63004 ** Form A is can be transformed into the equivalent form B as follows:
63028 Expr *pTest = 0; /* X==Ei (form A) or just Ei (form B) */
64221 ** This function is used to create the text of expressions of the form:
67320 ** of columns that form the primary key. If pList is NULL, then the
67966 ** a negative nCol, it means two or more views form a loop, like this:
73861 ** a statement of the form "INSERT INTO <iDb, pTab> SELECT ..." can
74067 ** The pList parameter holds EXPRLIST in the first form of the INSERT
74068 ** statement above, and pSelect is NULL. For the second form, pList is
74082 ** The three remaining templates assume the statement is of the form
74086 ** If the SELECT clause is of the restricted form "SELECT * FROM <table2>" -
74131 ** that is also read as part of the SELECT. In the third form,
74155 ** transfer values form intermediate table into <table>
74270 /* If the statement is of the form
74502 ** transfer values form intermediate table into <table>
75289 ** Attempt the transfer optimization on INSERTs of the form
75343 return 0; /* Must be of the form INSERT INTO ... SELECT ... */
75398 ** correct syntactic form to participate in this optimization. Now
76942 ** Pragmas are of this form:
77004 ** The first form reports the current persistent setting for the
77006 ** pages in the page cache. The second form sets both the current
77057 ** The first form reports the current setting for the
77058 ** database page size in bytes. The second form sets the
77083 ** The first form reports the current setting for the
77085 ** second form attempts to change this setting. Both
77334 ** The first form reports the current local setting for the
77338 ** pages in the page cache. The second form sets the local
77878 ** In its first form, this pragma returns the encoding of the main
77881 ** The second form of this pragma is a no-op if the main database file
77892 ** In the second form this pragma sets the text encoding to be used in
79220 ** is ANDed with the existing WHERE clause, is of the form:
79461 ** form a distinct entry. iTab is a sorting index that holds previously
80137 ** that form the result set of a SELECT statement) compute appropriate
80427 ** This routine is called to process a compound query form from
80620 /* Convert the data in the temporary table into whatever form
80944 ** We assume a query of the following form:
81699 ** be of the form:
81966 ** function tests if the SELECT is of the form:
83031 ** the SQL statement is of the form:
86561 ** When a term is of the form:
86997 ** Commute a comparison operator. Expressions of the form "X op Y"
87053 ** Search for a term in the WHERE clause that is of the form "X <op> <expr>"
87234 ** Check to see if the given expression is of the form
87298 ** If all subterms are of the form T.C=expr for some single column of C
87316 ** A subterm is "indexable" if it is of the form
87452 ** case means that every term of the OR clause is of the form
87456 ** the all terms are of the form "table1.column=table2.column". It
87457 ** might be possible to form an IN operator with either table1.column
87461 ** Note that terms of the form "table.column1=table.column2" (the
87488 /* This term must be of the form t1.a==t2.b where t2 is in the
87586 ** If the expression is of the form "<expr> <op> X" it gets commuted
87587 ** to the standard form of "X <op> <expr>".
87589 ** If the expression is of the form "X <op> Y" where both X and Y are
87591 ** term of the form "Y <op> X" is added to the WHERE clause and
87739 ** A like pattern of the form "x LIKE 'abc%'" is changed into constraints
87743 ** The last character of the prefix "abc" is incremented to form the
87794 ** current expression is of the form: column MATCH expr.
88370 ** table. In other words, if the constraint is of the form:
88821 ** If there exists a WHERE term of the form "x IN (SELECT ...)", then
89149 ** For a constraint of the form X=expr, the expression is evaluated and its
89150 ** result is left on the stack. For constraints of the form X IN (...)
90670 ** TK_DELETE, or TK_INSTEAD. If the event is of the form
90756 /* Next is all token values, in a form suitable for use by makeheaders.
94620 /* Parameters of the form #NNN (where NNN is a number) are used
98785 ** first argument in varint form.
101431 ** parsed form of the expression and *pnConsumed is set to the number of
104632 ** the form:
105784 ** Handle a 'special' INSERT of the form:
110011 ** The human readable string takes the form of a Tcl list with one