Lines Matching defs:A

164 transtype(A) ::= .             {A = TK_DEFERRED;}  in transtype()  argument
165 transtype(A) ::= DEFERRED(X). {A = @X; /*A-overwrites-X*/} in transtype() argument
166 transtype(A) ::= IMMEDIATE(X). {A = @X; /*A-overwrites-X*/} in transtype() argument
167 transtype(A) ::= EXCLUSIVE(X). {A = @X; /*A-overwrites-X*/} in transtype() argument
189 createkw(A) ::= CREATE(A). {disableLookaside(pParse);} in createkw() argument
192 ifnotexists(A) ::= . {A = 0;} in ifnotexists() argument
193 ifnotexists(A) ::= IF NOT EXISTS. {A = 1;} in ifnotexists() argument
208 table_option_set(A) ::= . {A = 0;} in table_option_set() argument
209 table_option_set(A) ::= table_option(A). in table_option_set() argument
211 table_option(A) ::= WITHOUT nm(X). { in table_option() argument
219 table_option(A) ::= nm(X). { in table_option() argument
229 columnname(A) ::= nm(A) typetoken(Y). {sqlite3AddColumn(pParse,A,Y);} in columnname() argument
316 typetoken(A) ::= . {A.n = 0; A.z = 0;} in typetoken() argument
317 typetoken(A) ::= typename(A). in typetoken() argument
321 typetoken(A) ::= typename(A) LP signed COMMA signed RP(Y). { in typetoken() argument
325 typename(A) ::= ids(A). in typename() argument
344 scanpt(A) ::= . { in scanpt() argument
348 scantok(A) ::= . { in scantok() argument
359 ccons ::= DEFAULT scantok(A) term(X). in scantok() argument
361 ccons ::= DEFAULT LP(A) expr(X) RP(Z). in LP() argument
363 ccons ::= DEFAULT PLUS(A) scantok(Z) term(X). in PLUS() argument
365 ccons ::= DEFAULT MINUS(A) scantok(Z) term(X). { in MINUS() argument
387 ccons ::= CHECK LP(A) expr(X) RP(B). {sqlite3AddCheckConstraint(pParse,X,A.z,B.z);} in LP() argument
408 refargs(A) ::= . { A = OE_None*0x0101; /* EV: R-19803-45884 */} in refargs() argument
409 refargs(A) ::= refargs(A) refarg(Y). { A = (A & ~Y.mask) | Y.value; } in refargs() argument