Home
last modified time | relevance | path

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

/sqlite-3.40.0/test/
H A Dfuzzer1.test232 INSERT INTO f2_rules(ruleset,cFrom,cTo,cost)
1683 SELECT cFrom, cTo, word
1686 ORDER BY +cTo;
1690 SELECT cFrom, cTo, word
1693 ORDER BY +cTo DESC
1697 SELECT cFrom, cTo, word
1700 ORDER BY +cTo DESC;
1704 SELECT cFrom, cTo, word
1707 ORDER BY +cTo DESC;
1712 SELECT cFrom, cTo, word
[all …]
H A Dfuzzer2.test38 CREATE TABLE x1_rules(ruleset, cFrom, cTo, cost);
60 SELECT count(*) FROM x1_rules WHERE cTo!=cFrom;
68 SELECT cTo FROM x1_rules WHERE cFrom='xx'
H A Dfuzzerfault.test24 CREATE TABLE x1_rules(ruleset, cFrom, cTo, cost);
48 CREATE TABLE x2_rules(ruleset, cFrom, cTo, cost);
71 CREATE TABLE x1_rules(ruleset, cFrom, cTo, cost);
H A Damatch1.test58 CREATE TABLE costs(iLang, cFrom, cTo, Cost);
H A Dspellfix4.test24 CREATE TABLE cost1(iLang, cFrom, cTo, iCost);
H A Dspellfix.test179 CREATE TABLE costs(iLang, cFrom, cTo, iCost);
219 CREATE TABLE costs2(iLang, cFrom, cTo, iCost);
/sqlite-3.40.0/ext/misc/
H A Dspellfix.c318 static int substituteCost(char cPrev, char cFrom, char cTo){ in substituteCost() argument
320 if( cFrom==cTo ){ in substituteCost()
324 if( cFrom==(cTo^0x20) && ((cTo>='A' && cTo<='Z') || (cTo>='a' && cTo<='z')) ){ in substituteCost()
329 classTo = characterClass(cPrev, cTo); in substituteCost()