Home
last modified time | relevance | path

Searched refs:star_opt (Results 1 – 1 of 1) sorted by relevance

/sqlite-3.40.0/ext/fts5/
H A Dfts5parse.y185 phrase(A) ::= phrase(X) PLUS STRING(Y) star_opt(Z). { in phrase()
188 phrase(A) ::= STRING(Y) star_opt(Z). { in phrase()
195 %type star_opt {int}
196 star_opt(A) ::= STAR. { A = 1; } in star_opt() function
197 star_opt(A) ::= . { A = 0; } in star_opt() function