Lines Matching refs:cd
40 test_fts3expr "ab AND cd"
41 } {AND {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
43 test_fts3expr "ab cd"
44 } {AND {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
46 test_fts3expr "ab OR cd"
47 } {OR {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
49 test_fts3expr "ab NOT cd"
50 } {NOT {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
52 test_fts3expr "ab NEAR cd"
53 } {NEAR/10 {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
55 test_fts3expr "ab NEAR/5 cd"
56 } {NEAR/5 {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
58 test_fts3expr "ab NEAR/87654321 cd"
59 } {NEAR/87654321 {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
61 test_fts3expr "ab NEAR/7654321 cd"
62 } {NEAR/7654321 {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
64 test_fts3expr "ab NEAR/654321 cd"
65 } {NEAR/654321 {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
67 test_fts3expr "ab NEAR/54321 cd"
68 } {NEAR/54321 {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
70 test_fts3expr "ab NEAR/4321 cd"
71 } {NEAR/4321 {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
73 test_fts3expr "ab NEAR/321 cd"
74 } {NEAR/321 {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
76 test_fts3expr "ab NEAR/21 cd"
77 } {NEAR/21 {PHRASE 3 0 ab} {PHRASE 3 0 cd}}
252 test_fts3expr2 "ab OR cd AND ef"
253 } {OR ab {AND cd ef}}
255 test_fts3expr2 "cd AND ef OR ab"
256 } {OR {AND cd ef} ab}
258 test_fts3expr2 "ab AND cd AND ef OR gh"
259 } {OR {AND {AND ab cd} ef} gh}
261 test_fts3expr2 "ab AND cd OR ef AND gh"
262 } {OR {AND ab cd} {AND ef gh}}
264 test_fts3expr2 "ab cd"
265 } {AND ab cd}
268 test_fts3expr2 "(ab OR cd) AND ef"
269 } {AND {OR ab cd} ef}
271 test_fts3expr2 "ef AND (ab OR cd)"
272 } {AND ef {OR ab cd}}
274 test_fts3expr2 "(ab OR cd)"
275 } {OR ab cd}
277 test_fts3expr2 "(((ab OR cd)))"
278 } {OR ab cd}