Home
last modified time | relevance | path

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

/sqlite-3.40.0/ext/fts5/
H A Dfts5parse.y151 nearset(A) ::= phrase(Y). { A = sqlite3Fts5ParseNearset(pParse, 0, Y); } in nearset()
152 nearset(A) ::= CARET phrase(Y). { in nearset()
162 nearphrases(A) ::= phrase(X). { in nearphrases()
165 nearphrases(A) ::= nearphrases(X) phrase(Y). { in nearphrases()
182 %type phrase {Fts5ExprPhrase*}
183 %destructor phrase { sqlite3Fts5ParsePhraseFree($$); }
185 phrase(A) ::= phrase(X) PLUS STRING(Y) star_opt(Z). { in phrase() function
188 phrase(A) ::= STRING(Y) star_opt(Z). { in phrase() function
/sqlite-3.40.0/ext/fts3/
H A DREADME.syntax42 of the tokens in the phrase in the order specified, with no intervening
54 As well as grouping tokens together by phrase, the binary NEAR operator
99 part of a phrase enclosed in quotes, may have a '*' character appended to
109 A token that is not part of a quoted phrase may be preceded by a '-'
115 matches rows that contain the phrase "database engine" but do not contain
116 the term "sqlite". If the '-' character occurs inside a quoted phrase,
119 one term or phrase that is not preceded by the '-' prefix.
134 phrase or a term preceded by a '-' operator. A '*' character may be
/sqlite-3.40.0/test/
H A Dfts3expr2.test109 set phrase [lindex $tree 1]
110 if {[llength $phrase]>1} {
111 return "\"$phrase\""
113 return $phrase
H A Dfts3expr5.test30 # Various forms of empty phrase expressions.
53 # Various forms of empty phrase expressions.
H A Dfts3defer.test45 INSERT INTO t1 VALUES('an instance of a phrase');
46 INSERT INTO t1 VALUES('an instance of a longer phrase');
54 3 {SELECT rowid FROM t1 WHERE t1 MATCH '"a longer phrase"'} {3}
55 4 {SELECT snippet(t1) FROM t1 WHERE t1 MATCH '"a longer phrase"'}
56 {"an instance of <b>a</b> <b>longer</b> <b>phrase</b>"}
385 # snippet() function with phrase.
401 # snippet() function with phrase.
H A Dfts3auto.test231 # This block populates the nHit and nDoc arrays. For each phrase/column
234 # nHit($iPhrase,$iCol) - Total number of hits for phrase $iPhrase in
238 # phrase $iPhrase in column $iCol.
257 set phrase [lindex $expr 0]
260 foreach tok $phrase {
274 } elseif {$rewritten != $phrase} {
H A Dspellfix4.test267 ('phrase'),
H A Dindexedby.test64 # EVIDENCE-OF: R-58230-57098 The "INDEXED BY index-name" phrase
225 # EVIDENCE-OF: R-40297-14464 The INDEXED BY phrase forces the SQLite
H A Dwithout_rowid5.test27 # EVIDENCE-OF: R-32341-39358 However if the phrase "WITHOUT ROWID" is
H A Dfts3prefix.test127 INSERT INTO t1 VALUES('into a phrase, and the full-text query system');
H A Dfts3rnd.test361 # Similar to the above, except for phrase queries.
H A Dfts3ac.test1106 # that match the phrase appear in the offsets(email) list.
H A Dfts2c.test1106 # that match the phrase appear in the offsets(email) list.
H A Dfts1c.test1106 # that match the phrase appear in the offsets(email) list.
H A Dfts1porter.test15092 phrase phrase
15094 phrases phrase
/sqlite-3.40.0/ext/fts5/test/
H A Dfts5first.test90 } {1 {fts5: phrase queries are not supported (detail!=full)}}
94 } {1 {fts5: phrase queries are not supported (detail!=full)}}
H A Dfts5simple3.test85 # phrase matched zero rows has been fixed.
H A Dfts5aux.test210 # Test passing an out-of-range phrase number to xPhraseSize (should
H A Dfts5phrase.test12 # Tests focused on phrase queries.
H A Dfts5detail.test63 } {1 {fts5: phrase queries are not supported (detail!=full)}}
H A Dfts5fault4.test186 # OOM error when querying for a phrase with many tokens.
H A Dfts5porter.test7554 phrase phrase phraseless phraseless
7555 phrases phrase phrygia phrygia
/sqlite-3.40.0/src/
H A Dsqlite.h.in6135 const char *zPassPhrase /* Activation phrase */